在C#中,Console.WriteLine()方法主要用于在控制臺窗口中輸出文本或變量的值。以下是一些常見的用法:
string message = "Hello World!";
Console.WriteLine(message);
int number = 10;
Console.WriteLine(number);
int x = 5;
int y = 3;
Console.WriteLine("x = {0}, y = {1}", x, y);
double pi = 3.14159;
Console.WriteLine("The value of pi is {0:F2}", pi);
上述代碼將輸出 “The value of pi is 3.14”,其中{0:F2}表示將第一個參數格式化為帶有兩位小數的浮點數。
Console.WriteLine("This is a \t tab");
Console.WriteLine("This is a \n new line");
上述代碼中,\t表示一個制表符,\n表示一個換行符。
Person person = new Person("John", 25);
Console.WriteLine(person);
上述代碼中,Person類的ToString()方法被調用,以輸出對象的字符串表示。
這只是Console.WriteLine()方法的一些常見用法,實際上還有其他更多的用法,具體取決于你的需求。