在C#中,可以使用Console.WriteLine方法來實現(xiàn)字符串的輸出,類似于C語言中的printf函數(shù)。下面是一些字符串輸出的技巧:
int num = 10;
string str = "Hello";
Console.WriteLine("num = {0}, str = {1}", num, str);
double num = 3.14159;
Console.WriteLine("num = {0:F2}", num); // 輸出num = 3.14
string str1 = "Hello";
string str2 = "World";
Console.WriteLine(str1 + " " + str2); // 輸出Hello World
int age = 20;
Console.WriteLine($"My age is {age}"); // 輸出My age is 20
這些技巧可以幫助你更靈活地處理字符串輸出,在C#中實現(xiàn)類似于printf函數(shù)的功能。