Sunday, June 26, 2005

StringTokenizer in C#

There is no equivalent to StringTokenizer of Java in C#

what to use then?

string line = "practice of programming";
string values[] = line.Split(' ');

values will have the results .. delimited by space

-Kalyan

No comments: