max size of c# string

  • Thread starter Thread starter Guest
  • Start date Start date
Yash said:
What will be the max size of the C# string?

I suspect you'll have trouble if you have more than about int.MaxValue
characters, but you'd need rather a lot of memory to keep a string that
size anyway - especially on a device running the Compact Framework! On
mobile devices, the limit is basically that of the memory of the
device.
 
Back
Top