So, I've been learning JavaScript recently and now have been over the past two weeks having to learn C# too. I have converted a block of code from JS to C#. The answer is in a form of an array containing integers.
Console.WriteLine(results[i]);
returns
12
457
7
99
However, I would like to show this on one line, but Console.Write(results[i]);
combines the integers and returns
12457799
and I would it to show:
12 457 7 99
I've tried some rudimentary ways to fix it but have been unsuccessful.
Any tips would be appreciated. Cheers.