C#中writeline的用法有哪些

在C#中,writeline方法有以下几种用法:

将文本写入控制台:

Console.WriteLine("Hello World");

将变量的值写入控制台:

int num = 5;
Console.WriteLine(num);

格式化输出:

string name = "John";
int age = 25;
Console.WriteLine("My name is {0} and I am {1} years old.", name, age);

将文本写入文件:

string filePath = "example.txt";
string text = "Hello World";
System.IO.File.WriteAllText(filePath, text);

将文本追加到文件末尾:

string filePath = "example.txt";
string text = "Hello World";
System.IO.File.AppendAllText(filePath, text);

这些是writeline方法的常见用法,但还有其他更多的用法可以根据具体需要进行使用。

阅读剩余
THE END