如何检查VB.NET中是否会引发事件?我似乎能够在C#中完成它,但在VB中却没有,即使我使用相同的语法. 这是我的VB.NET语法(返回错误) If [EVENT] IsNot Nothing ThenEnd If 这是我的C#语法(完美运行)
这是我的VB.NET语法(返回错误)
If [EVENT] IsNot Nothing Then End If
这是我的C#语法(完美运行)
If([EVENT] != null) //If an event is not null(nothing) { }
这是VB代码返回的错误
你必须使用VB.Nets语法的一个奇怪而鲜为人知的部分,即如果你将Event添加到Events名称的末尾,它就会以与c#相同的方式公开对象,如果你有一个事件Foo你可以检查如果有处理程序“[EVENT] is an event, and cannot be called directly. Use a ‘RaiseEvent’ statement to raise an event.”
If FooEvent IsNot Nothing Then End If