문제

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?

도움이 되었습니까?

해결책

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.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top