Hello,
I am calling a function from a .NET assembly which returns a byte[]
how do I capture the return value of that function ?\
I tried doing this
byte[] byteData = (byte[])obj.GetType().GetMethod("methodname").Invoke(obj, new object[] { buffer});
but I get a null value back in byteData ..
Can anybody help ?