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.");
2.1m questions
2.1m answers
60 comments
57.0k users