set{ this._name = value;}
public Customer(int Id, string Name)
public void PrintDetails()
Console.WriteLine("ID - {0} && Name - {1}", this._id, this._name);
public static void Main()
Customer C1 = new Customer(10, "Suman");
Customer C2 = new Customer