writeline

C#中writeline的用法有哪些

小亿
183
2023-07-28 11:01:58
栏目: 编程语言

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

  1. 将文本写入控制台:
Console.WriteLine("Hello World");
  1. 将变量的值写入控制台:
int num = 5;
Console.WriteLine(num);
  1. 格式化输出:
string name = "John";
int age = 25;
Console.WriteLine("My name is {0} and I am {1} years old.", name, age);
  1. 将文本写入文件:
string filePath = "example.txt";
string text = "Hello World";
System.IO.File.WriteAllText(filePath, text);
  1. 将文本追加到文件末尾:
string filePath = "example.txt";
string text = "Hello World";
System.IO.File.AppendAllText(filePath, text);

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

0
看了该问题的人还看了