using System;
public class Program
{
public class Customer
private string name;
public string GetName()
return name;
}
public void SetName(string value)
name = value;
public static void Main()
// Can access Name through the GetName Method
Customer customer = new Customer();
customer.SetName("Azad");
Console.WriteLine(customer.GetName());