如何在 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(); // display the line Console.WriteLine("Result = {0}", myStr); } }
输出
Result =
以下是输出。假设用户输入了“Amit”作为输入 -
Result = amit
广告