Question:You’ve implemented an event delegate from a class, but when you try to attach an event procedure you get a compiler error that there is no overload that matches the delegate. What happened? - VB.NET
A The signature of the event procedure doesn’t match that defined by the delegate.
B The event procedure is declared Shared/static, but it should be an instance member instead.
C You mistyped the event procedure name when attaching it to the delegate.
D The class was created in a different language.