CharArrayReader
-
Hi, Could anyone tell me whether there is a C# equivalent of the java CharArrayBuilder class? Regards, Dave
Regards, Dave
i would imagine that StringBuilder would be close, but i'm not all that familiar with java.
Please remember to rate helpful or unhelpful answers, it lets us and people reading the forums know if our answers are any good.
-
Hi, Could anyone tell me whether there is a C# equivalent of the java CharArrayBuilder class? Regards, Dave
Regards, Dave
I don't think there is one. However, a string is really a null terminated character array + it has a ToCharArray method. As the previous poster said there's also the string builder if you need it. Another alternative is to use a List<char>
Dave
BTW, in software, hope and pray is not a viable strategy. (Luc Pattyn)