Does DataTable
in C# provide a property that gives me the size of each row (number of bytes)?
C#中的DataTable是否提供了一个属性,它给出了每行的大小(字节数)?
1 个解决方案
#1
You can determine the unmanaged size of a managed object with Marshal.SizeOf.
您可以使用Marshal.SizeOf确定托管对象的非托管大小。
#1
You can determine the unmanaged size of a managed object with Marshal.SizeOf.
您可以使用Marshal.SizeOf确定托管对象的非托管大小。