Hello,
I¡¯m experiencing a strange problem, with Enum:
I can do the following with WindowState (which is an enum):
String s = typeof(WindowState).FullName
And s ¡°System.Windows.WindowState¡±.
Now if I try Type.GetType(s), I get back a null
What¡¯s going on Is this because an Enum is a value type
Thanks
Houman