string frase = Console.ReadLine();
frase.ToCharArray(0,frase.Length);
foreach (string s in frase)
{
System.Console.WriteLine(s);
}
Mi dice che è impossibile convertire il tipo char in string.
string frase = Console.ReadLine();
frase.ToCharArray(0,frase.Length);
foreach (string s in frase)
{
System.Console.WriteLine(s);
}
Mi dice che è impossibile convertire il tipo char in string.