Hi there, how can I split a string into variables?? better:
string s = "one,two,three,four";
// Split string on character comma.
string[] words = s.Split(',');
foreach (string word in words)
{
Console.WriteLine(word);
}
how can I put an incrasing variable (for n splitted words) instead of 'Console.WriteLine(word)'
thanks