⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 accessibility.vb

📁 大名鼎鼎的mono是.NET平台的跨平台(支持linux
💻 VB
字号:
Imports SystemClass C1    Public a As Integer    Private b As Integer    Friend c As Integer    Protected d As Integer    Public Function S1() As Object ' All data members of the Class should be accessible        a = 10        b = 20        c = 30        d = 40        S2()    End Function    Private Function S2() As Object    End FunctionEnd ClassClass C2    Inherits C1    Public Function DS1() As Object 'All data members except Private members should be accessible        a = 100        c = 300        d = 400    End FunctionEnd ClassClass C3    Public Function S1() As Object 'All Public and friEnd members should be accessible        Dim myC As New C1()        myC.a = 1000        myC.c = 3000    End FunctionEnd ClassModule Accessibility    Function Main() As Integer        Dim myC1 As New C1()        myC1.S1()        Dim myC2 As New C2()        myC2.DS1()        Dim myC3 As New C3()        myC3.S1()    End FunctionEnd Module

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -