HOW TO:叫用委派方法 (Visual Basic)
這個範例顯示如何使方法與委派 (Delegate) 產生關聯,然後再透過委派來叫用 (Invoke) 方法。
建立委派和相對應的程序
建立名為 MySubDelegate 的委派。
Delegate Sub MySubDelegate(ByVal x As Integer)
宣告類別,其中包含的方法具有和委派相同的簽章。
Class class1 Sub Sub1(ByVal x As Integer) MsgBox("The value of x is: " & CStr(x)) End Sub End Class
定義方法來建立委派的執行個體,並藉由呼叫內建的 Invoke 方法來叫用與委派關聯的方法。
Protected Sub DelegateTest() Dim c1 As New class1 ' Create an instance of the delegate. Dim msd As MySubDelegate = AddressOf c1.Sub1 ' Call the method. msd.Invoke(10) End Sub