V
Vikram
Hi,
How do I call a method which takes a ref parameter using Reflection ??
Thanks,
Vikram
How do I call a method which takes a ref parameter using Reflection ??
Thanks,
Vikram
How do I call a method which takes a ref parameter using Reflection ??
Vikram said:How do I call a method which takes a ref parameter using Reflection ??
Jon Skeet said:Vikram said:How do I call a method which takes a ref parameter using Reflection ??
There's a good example in MSDN under
Type.InvokeMember Method
(String, BindingFlags, Binder, Object, Object[])
The constructor there is called with a ref parameter. Basically, the
value in the parameter array is replaced with the final value, if you
see what I mean.
Vikram said:Forgot to mention. The method is overloaded.
Can u point me to a sample for calling overloaded methods and with the
method having a ref or out parameter.