是的,C# 的 WriteLine
方法支持自定義格式。你可以使用占位符 {0}
、{1}
等來表示參數,然后在調用 WriteLine
方法時傳入相應的參數。例如:
int age = 25;
string name = "John";
Console.WriteLine("My name is {0} and I am {1} years old.", name, age);
這將輸出:
My name is John and I am 25 years old.
你還可以使用 string.Format
方法來實現類似的功能:
int age = 25;
string name = "John";
Console.WriteLine(string.Format("My name is {0} and I am {1} years old.", name, age));
這將產生相同的輸出。