vote up 0 vote down star

Is there any maximum size for a cell of data in a DataTable (like a byte[]), or can you grow it until the system runs out of memory?

flag

63% accept rate

1 Answer

vote up 2 vote down check

There is no hardcoded limit.

If you're storing it as a byte[], you'll have a 2GB limit (even on 64bit systems), since you cannot make an array with more than Integer.MaxValue elements, which, with byte per element, would be 2GB.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.