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 ...
Write a method_three method that calls method_one and method_two, then create a delegate for that method.