在C#中,类似于C语言的printf函数的功能可以通过Console.WriteLine方法实现。Console.WriteLine方法接受一个格式化字符串和一系列参数,用于在控制台输出格式化的文本。
格式化字符串中可以包含转义字符和占位符,用于指定输出的格式。常用的格式化符号包括:
示例:
int num1 = 10;
double num2 = 3.14159;
Console.WriteLine("The number is: {0}", num1); // 输出 "The number is: 10"
Console.WriteLine("The number with currency format is: {0:C}", num1); // 输出 "The number with currency format is: $10.00"
Console.WriteLine("The number with fixed-point format is: {0:F2}", num2); // 输出 "The number with fixed-point format is: 3.14"
除了上述常用的格式化符号外,C#还支持更多的格式化选项,可以根据需要进行查阅。另外,C#中也提供了string.Format方法来实现格式化字符串的功能,用法与Console.WriteLine类似。