using System;
class HelloCSharp
{
static void Main()
{
Console.WriteLine("Hello C#");
}
}
I want the output to be:
H
e
l
l
o
C
#
but every letter should start on a new line
I am new I know but I keep searching and can't find the answer. Should it be something with Environment.NewLine
?
Environment.NewLine
as you guessed. – Freightage