如何一次写多个东西到控制台?

How to write multiple things to console at once?

int a=10,b=20;

console.writeline(a);
console.writeline(b);

我只想使用一个 console.writeline();

我使用下面的代码但不起作用

console.writeline(a,b);

您需要的是:

Console.Writeline("{0}{1}", a, b);

使用:

Console.WriteLine(string.Format("{0},{1}", a, b));