> Carl Daniel [VC++ MVP] schrieb:
> > See System.Type.GetType(string typeName)
>
> Thank you!
>
> Sometimes it is hard to find the right place in the documentation... :-)
Note, however, that Type.GetType with just the "plain" type name (i.e.
without full assembly information) will only search in mscorlib and the
currently executing assembly. If you need to look in other assemblies,
either call GetType on the appropriate Assembly reference, or specify
the assembly details in the argument to Type.GetType.

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