Dobrý den, mám tu část kódu
Console.WriteLine("Zadejte souradnici x bodu A:");
int a1 = int.Parse(Console.ReadLine());
Console.Write("Zadejte souradnici y bodu A:");
int a2 = int.Parse(Console.ReadLine());
//a to samé pro další dva body
U každého bodu mi to hlásí chybu: The best overloaded method match for `int.Parse(string)' has some invalid arguments
Nevíte si s tím někdo rady?