By default VB.NET delegate refers
-
Shared Methods
-
Instance Methods
-
Both A & B
-
None of the above
C
Correct answer
Explanation
VB.NET delegates can refer to both shared (static) methods and instance methods. When a delegate points to an instance method, it captures both the method and the target object. When pointing to a shared method, only the method is needed. Delegates are versatile and support both types.