Hi friends,
I am working on application in which I have to hold data(String Format) in 'string' variable. but, data is of variable size. Its size can be more than 10 mb or less than 100kb. Currently, I am holding data in 'string' variable. but I doubt, can 'string' variable hold data greater than 10 mb? OR should I use StringBuilder class ?
Loading

Manoj SevdaPosted Nov 22, 2011, 12:04 AM
VulpesPosted Nov 21, 2011, 2:16 PM
If data is of variable size, then you'd be better using a StringBuilder instead whose length and contents can be changed.