All Questions
1 question
3
votes
0
answers
1k
views
how to declare a byte[] in C# so that ironpython interprets it as byte[] and not as a tuple [closed]
In a C++/CLI we have a function that returns this:
array<Byte>^ OutBuffer = gcnew array<Byte>(BufferSize);
IronPython treats it as a byte[].
In C#, we have a function that returns this:
...