string str = null; Console.WriteLine("请输入一个字符串"); str = Console.ReadLine(); char[] c = new char[str.Length]; int i = 0; foreach (var item in str) { c[i] = item; i++; } Console.WriteLine(c); Console.ReadKey();
提示用户输入一个字符串,通过foreach循环将用户输入的字符串赋值给一个字符数组