AddHandler有错误:xxx是一种类型,不能用作表达式

时间:2016-08-09 18:11:08

标签: vb.net

enter image description here

这是事件定义

Public MustInherit Class CBaseLetterParser
    Public Event onKeywordUnhandled(ByVal sKeyword As String)
    ...
End Class

Public Class CCreditCardLetterParser
    Inherits CBaseLetterParser
    ...
End Class

订阅onKeywordUnhandled事件的正确方法是什么?

我正在使用VS 2015。

1 个答案:

答案 0 :(得分:0)

AddHandler方法需要您创建的实际事件,而不是

AddHandler onKeyworkUnhandledEventHandler, AddressOf f

使用

AddHandler onKeyworkUnhandled, AddressOf f