如何使用 C# 在控制台上打印一行?
在 C# 中,要显示一行,使用 Console.Write()。
Console 在控制台上显示结果。我首先设置一个字符串。
string str = "Tom Hanks is an actor";
现在显示上面的行。
Console.WriteLine(str);
以下是完整的代码 −
示例
using System; namespace Program { public class Demo { public static void Main(String[] args) { string str = "Tom Hanks is an actor"; Console.WriteLine("Displaying a line below"); Console.WriteLine(str); Console.ReadLine(); } } }
输出
Displaying a line below Tom Hanks is an actor
广告