methodinvocation2.vb
来自「大名鼎鼎的mono是.NET平台的跨平台(支持linux」· VB 代码 · 共 25 行
VB
25 行
Imports System.CollectionsNamespace MethodInvocation2 Class Test1 End Class Enum Test2 Value1 End Enum Class Tester Shared Function Test(ByVal Parent As Test1, ByVal List As Generic.List(Of Test2)) As Integer Return 1 End Function Shared Function Test(ByVal Parent As Test1, ByVal ParamArray List As Test2()) As Integer Return 0 End Function Shared Function Main() As Integer Return Test(Nothing, Test2.Value1) End Function End ClassEnd Namespace
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?