mustinherita.vb

来自「大名鼎鼎的mono是.NET平台的跨平台(支持linux」· VB 代码 · 共 23 行

VB
23
字号
Option Strict Off'Testing MustInherit classes with MustOverride methods that do not return a valueMustInherit Class C1    Public Function F1()        Dim a As Integer = 10    End Function    Public MustOverride Function F2()End ClassClass C2    Inherits C1    Public Overrides Function F2()    End FunctionEnd ClassModule Module1    Function Main() As Integer        Dim x As C1 = Nothing        x = New C2()    End FunctionEnd Module

⌨️ 快捷键说明

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