在 WriteLine 中将 int 转换为字符串的异常
Exception with int to string convert in WriteLine
Picture
英语异常:"Argument 1: cant convert "int" 到 "string".
但是在我的参数和参数中我只使用了 "int" 类型。
如何使用 WriteLine
方法输入我的参数(X 和 Y)?
添加明确的 .ToString
,例如
Console.WriteLine(3.ToString());
或使用string.format:
Console.WriteLine(String.Format("{0}, {1}", a, b));
(除其他外)。
Picture
英语异常:"Argument 1: cant convert "int" 到 "string".
但是在我的参数和参数中我只使用了 "int" 类型。
如何使用 WriteLine
方法输入我的参数(X 和 Y)?
添加明确的 .ToString
,例如
Console.WriteLine(3.ToString());
或使用string.format:
Console.WriteLine(String.Format("{0}, {1}", a, b));
(除其他外)。