如何在 C# 中读取字符串形式的输入?


若想在 C# 中读取字符串形式的输入,请使用 Console.ReadLine() 方法。

str = Console.ReadLine();

以上示例将读取字符串形式的输入。我们无需在此使用转换方法,因为输入默认采用字符串形式。

现在显示用户输入的字符串 −

示例

 实际演示

using System;
using System.Collections.Generic;

class Demo {
   static void Main() {
      string myStr;

      // use ReadLine() to read the entered line
      myStr = Console.ReadLine();

      // display the line
      Console.WriteLine("Result = {0}", myStr);
   }
}

输出

Result =

以下为输出结果。假设用户输入了“Amit”作为输入 −

Result = amit

更新时间: 2020 年 6 月 22 日

7K+ 浏览次数

开启你的 职业生涯

完成课程并获得认证

开始使用
广告