Basic Examples of C# Syntax

Basic Examples of C# Syntax

1. How to write on screen in C#. Console.WriteLine(“I have been studying C# for 4 weeks!”); This will appear on screen, and will disappear immediately. So, We are writing another statement. Console.WriteLine(“I have benn studying C# for 4 weeks!”); Console.ReadLine(); Now it will remain on screen, unless we press Enter key. Here we see that … Read more