|
Be aware that you can’t invoke the method
x.ToString() and pass it to the delegate
variable. Invoking x.ToString() returns
a string object that can’t be assigned to the delegate variable.
You can only assign the address of a method to the delegate
variable.
|