I have a problem with System.Type.GetType method.
If you try out the following code in C# console app ..
System.Type t = System.Type.GetType("System.DateTime");
System.Type t1 = System.Type.GetType("DateTime");
t is set to the appropriate Type object
but the second call returns null (when I dont specify the namespace
name)
The documentation mentions that the current assembly and Mscorlib.dll
is searched...but I dont think that 'Mscorlib.dll' is being searched.
Any help would be highly appreciated.
Thanks,
Ady
Jon Skeet [C# MVP] - 30 Sep 2005 11:47 GMT
> I have a problem with System.Type.GetType method.
<snip>
Please see my response in another group where you asked the same
question.

Signature
Jon Skeet - <skeet@pobox.com>
http://www.pobox.com/~skeet Blog: http://www.msmvps.com/jon.skeet
If replying to the group, please do not mail me too