* Setting up environment
* Visual Studio Basics
* Basic language
* Control Statemnets
* if - else if - else
* Loop
* Switch Statements
* Loop
* Defining Class and Objects
* Defining the Function
* Class and Object - Functions (Simple and Parameterized)
* Class and Object - Constructors
* Functions(Parameterized with Return Types)
* Overloading Functions
* DateTime Class and methods (Add, Subtract, ToString etc.)
* String class and Methods( Substring, Split, Replace, IndexOf etc.)
* Working with foreach Loop
string name = "abc xyz mno";
string[] names = name.Split(' ');
foreach (var item in names)
{
Console.WriteLine(item);
}