在C#中,字符串格式化的方法主要有兩種:使用字符串插值和使用String.Format()方法。
string name = "Alice";
int age = 30;
string message = $"My name is {name} and I am {age} years old.";
Console.WriteLine(message);
string name = "Bob";
int age = 25;
string message = String.Format("My name is {0} and I am {1} years old.", name, age);
Console.WriteLine(message);
這兩種方法都可以用來格式化字符串,選擇使用哪種方法取決于個人偏好和代碼風格。