I am calling data from .dll, I need to have NULL to skip some cases.
int Fn(ref byte xpara[])
setnull(xpara)
The code above gave me an error and setnull() doesn't work for byte[]
Since the data from .dll might have 0s in it, I am using byte[] to avoid stopping by 0. I still need to set a byte[] to null in some cases.