如何在C#中找到DataTable行的大小?

时间:2022-05-28 15:04:40

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确定托管对象的非托管大小。