📄 expressionreclassifiedb.vb
字号:
'Author: Ritvik Mayank <mritvik@novell.com>'Copyright (C) 2005 Novell, Inc (http://www.novell.com)'Method pointer reclassified.Option Strict OffImports SystemDelegate Function A(ByVal c As Integer)Module Test Function B(ByVal c As Integer) If c <> 100 Then Throw New Exception("Unexpected Behavior C should be equal to 100 but got c =" & c) End If End Function Function Main() As Integer Dim delg As A delg = New A(AddressOf B) delg.Invoke(100) End FunctionEnd Module
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -