如何在C#中从控制台读取一行内容?
在C#中,ReadLine()方法用于从控制台读取一行。
str = Console.ReadLine();
以上操作会将这一行内容设置为变量str。
示例
using System; using System.Collections.Generic; class Demo { static void Main() { string str; // use ReadLine() to read the entered line str = Console.ReadLine(); // display the line Console.WriteLine("Input = {0}", str); } }
输出内容
Input =
上面我们使用Console.ReadLine()方法展示了一行内容。字符串由用户通过命令行输入。
广告