How do i get this
Console.WriteLine("Koordinaattipiste " + (4,2) + " on kvandrantissa 1.");
to print
(4,2)
instead of
(4, 2)
with the space in between?
Assuming that you unintentionally used a Tuple by enclosing the two values in brackets:
Console.WriteLine($"Koordinaattipiste ({x},{y}) on kvandrantissa 1.");
1.4m articles
1.4m replys
5 comments
57.0k users