Marshal.Copy
C#
4
Posts
2
Posters
0
Views
1
Watching
-
Hello, I noticed today that the
System.Runtime.InteropServices.Marshal
class has overloads of theCopy
method in the form:Copy(IntPtr source, int[] destination, int startIndex, int length);
, but there are no overloads for unsigned data (e.g.uint
). I wonder why? Thanks in advance. -
Hello, I noticed today that the
System.Runtime.InteropServices.Marshal
class has overloads of theCopy
method in the form:Copy(IntPtr source, int[] destination, int startIndex, int length);
, but there are no overloads for unsigned data (e.g.uint
). I wonder why? Thanks in advance. -
Thanks. But I'm wondering, since I'm creating a class library with methods that take
uint
, does this mean the library will not be usable except in C#?