public static void Splitta() { string str = "rossi mario"; string[] stringhe = ciao.Split(' '); foreach (string item in stringhe) { Console.WriteLine(item); } Console.Read(); //OUTPUT /* rossi mario */ }