How can I get a Type of member, ignoring its value ?
public static class Program
{
public static String a {set; get;}
public static void Main()
{
a = null;
a.GetType(); //Cant do that, it's null, how can i get "String"?
}
}