C# is a broadly useful, type-safe, object-arranged
programming language. It was created around 2000 by
Microsoft as a feature of its .NET drive.
C# Console app (.Net Framework) Notes
Namespace – concept contains functions, class and methods.
Console.WriteLine- always displays the information in a new line.
Console.Write- displays in one same line.
Console.ReadLine- takes users inputs.
Console.ReadKey- let the executed window stay unless users enter something.
Methods/functions -a method/function is a block where we put a code to perform a specific task. Static
void Main(string [] args) is called the main method and other methods or codes need to be put inside of it in order to execute
them.