What is the maximum row size in C #?

Possible duplicate:
What is the maximum length of a .NET string?

I need to know how many characters a string can contain in C #?

Is it the same as max char array length?

+6
string c #
source share
1 answer

String.Length is int, so its size is 2,147,483,647 . But consider using StringBuilder if you ask this question!

+16
source share

All Articles