📄 expressionoverloadmethodb.vb
字号:
'Author:' Satya Sudha K (ksathyasudha@novell.com)'' (C) 2005 Novell, Inc.'' Since there is only one applicable method, no late binding is involvedOption Strict OffImports SystemModule M Function F(ByVal a As String) As Integer Return 1 End Function Function Main() As Integer Dim obj As Object = "ABC" If F(obj) <> 1 Then System.Console.WriteLine("Overload Resolution failed in latebinding") : Return 1 End If End FunctionEnd Module
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -