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?
String.Length is int, so its size is 2,147,483,647 . But consider using StringBuilder if you ask this question!
2,147,483,647