If you have something like this:
Byte myArray[] = new Byte[someSize];
And you pass that to a Win32 function using P/Invoke, is it possible to then
cast that array to the "real" unmanged type that is contained within that
Byte array? E.g. if you wanted to cast that array to an array of
PRINTER_INFO_2 structs?
Thanks,
Torin
T. Ford - 30 Dec 2004 05:51 GMT
Ignore this question, I'll post a better question that is really at the heart
of what I'd like to do.
Thanks,
Torin
> If you have something like this:
>
[quoted text clipped - 8 lines]
>
> Torin