Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update HelloWorld2.cs #1116

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions C#/HelloWorld2.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@
class HelloWorld2 {
static void Main() {
//print text without inserting new line after the message
Console.Write("Hello world,");
Console.Write("Hello,");
Console.Writeln("How are you?");
//print next line
Console.WriteLine();
//print text with new line after the message
Console.WriteLine("Hello world");
Console.WriteLine("Hello ");
Console.WriteLine("How are you?");
//print new line using escape sequence just like C language
Console.WriteLine("Hello world\nHow are you?");
Console.WriteLine("Hello\nHow are you?");
}
}