D
Daniel
c# string size limit? length of string limit?
Daniel said:c# string size limit? length of string limit?
Michael C said:Limit of available contiguous free memory block or 2^31 chrs.
Jon Skeet said:Not quite - I believe the top bits of the length are taken for extra
flags, and there's always an extra null terminator, so it's 2^30-1
chars. Not that I expect it'll make a difference to anyone![]()
Michael said:Does C# use a null chr?