Function.createdelegate

how can i call 2 methods using .createdelgate () function

I have

2 methods (method_one and method_two)

Function.CreateDelegate(this,method_one);

      

but I need to call both methods in it ...

+2


source to share


1 answer


Write a method_three method that calls method_one and method_two, then create a delegate for that method.



+3


source







All Articles