如何在C#中将输入读取为字符串?

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

str = Console.ReadLine();

上面的代码将输入读为字符串。您无需在此处使用Convert方法,因为默认情况下输入采用字符串。

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

示例

using System;

using System.Collections.Generic;

class Demo {

   static void Main() {

      string myStr;

      // use ReadLine() to read the entered line

      myStr = Console.ReadLine();

      //显示行

      Console.WriteLine("Result = {0}", myStr);

   }

}

输出结果

Result =

以下是输出。假设用户输入“ Amit”作为输入-

Result = amit

以上是 如何在C#中将输入读取为字符串? 的全部内容, 来源链接: utcz.com/z/359883.html

回到顶部