In C# Properties are used to expose the local member variables. Till C# 2.0 version properties are defined by declaring a private member variable first and then declaring the property as stated below private string empName; Public string Empname { get { return empName; } set { empName= value; } } C# Automatic property But, […]