Skip to content

Instantly share code, notes, and snippets.

@nanwang2016
Created August 3, 2020 15:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nanwang2016/e02902502ed5b5b0261d99f6e0c13638 to your computer and use it in GitHub Desktop.
Save nanwang2016/e02902502ed5b5b0261d99f6e0c13638 to your computer and use it in GitHub Desktop.
using System;
namespace TestFile
{
class Program
{
static void Main(string[] args)
{
Console.Write("This is Line 1");
Console.Write("This is Line 2");
//
Console.WriteLine(" ");
// this will set a new line for the next output
Console.WriteLine("This is Line 3");
Console.WriteLine("This is Line 4");
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment