如何在 C# 中从控制台读取一行?


ReadLine() 方法用于在 C# 中从控制台读取一行。

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() 方法显示了一行。字符串由用户从命令行输入。

更新于: 22-6 月-2020

2K+ 浏览量

开启你的事业

完成课程即可获得认证

入门
广告