namespace ConsoleApplication3
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Type a number");
ConsoleKeyInfo KeyInfo1 = Console.ReadKey();
Console.WriteLine("Type another number");
ConsoleKeyInfo KeyInfo2 = Console.ReadKey();
Console.WriteLine("The number is {0}", KeyInfo1.KeyChar.ToString() + "The time is {1}. Is this right? Press y for yess or n for no.", KeyInfo2.KeyChar.ToString());
Console.ReadKey();
}
}
}
我问这个问题的原因是因为第一个数字显示在控制台中但第二个数字没有显示,它只是说{1}。我希望这是有道理的,我是编程新手。
答案 0 :(得分:4)
WriteLine
函数的第一个参数是格式字符串
这是你添加占位符的部分
您可以在第一个格式参数之后添加值以将占位符替换为参数,如下所示:
Console.WriteLine("The number is {0} The time is {1}. Is this right? Press y for yess or n for no.", KeyInfo1.KeyChar.ToString(), KeyInfo2.KeyChar.ToString());
第一个参数(格式化后,即传递给函数的第二个参数)将替换{0}
,第二个参数将替换{1}
。