在WriteLine中使用int转换为字符串的异常

时间:2016-12-16 17:11:09

标签: c# string int console.writeline

Picture

英语例外:“参数1:无法将”int“转换为”string“。

但是在我的参数和参数中,我只使用了“int”类型。

如何键入使用WriteLine方法的参数(X和Y)?

1 个答案:

答案 0 :(得分:0)

添加明确的.ToString,例如

Console.WriteLine(3.ToString());

或者使用string.format:

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

(除其他外)。