My First C# Program Using Notepad
C# Basic
STEP - 1 : Open Notepad and write below code init:
class First
{
static void Main()
{
System.Concole.Clear();
System.Concole.WriteLine("MY FIRST C# PROGRAM USING NOTEPAD. ");
}
}
Step - 2: Saving the program.
Cre...
anas07.hashnode.dev1 min read