using System;
public class myProperties
{
private static string myName;
public static string MyName
get
return myName;
}
set
myName = value;
public class Program
public static void Main()
myProperties.MyName = "Aneesh";
Console.WriteLine(myProperties.MyName);