Multiple choice technology programming languages

By default VB.NET delegate refers

  1. Shared Methods

  2. Instance Methods

  3. Both A & B

  4. None of the above

Reveal answer Fill a bubble to check yourself
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.