I know I can get a System.Type of an instance of my class by using GetType()
Point pt = new Point(0, 0); System.Type ptType = pt.GetType(); But what can I do when I want get System.Type of a type:
System.Type pointType = Point.GetType(); It does not work, but how can I do this?