1.

What Is Addressof Operator?

Answer»

Addressof operator creates a DELEGATE OBJECT to a METHOD.

example:
Dim pthread1 as NEW thread(AddressOf THREAD1)
Here thread1 is a method. pthread1 is a delegate object.

Addressof operator creates a delegate object to a method.

example:
Dim pthread1 as new thread(AddressOf thread1)
Here thread1 is a method. pthread1 is a delegate object.



Discussion

No Comment Found