tags:

views:

540

answers:

1

Does DataTable in C# provide a property that gives me the size of each row (number of bytes)?

A: 

You can determine the unmanaged size of a managed object with Marshal.SizeOf.

JP Alioto