Exception on english: "Argument 1: cant convert "int" into "string".
But in my parametrs and arguments I used only "int" type.
How can I typed my parameters (X and Y) used WriteLine
method?
Exception on english: "Argument 1: cant convert "int" into "string".
But in my parametrs and arguments I used only "int" type.
How can I typed my parameters (X and Y) used WriteLine
method?
Copyright © 2021 Jogjafile Inc.
Add an explicit
.ToString
, e.g.Or use string.format:
(Amongst others).