Mega Code Archive
Obtain type information using the Type GetType method(Case sensitive, throw TypeLoadException if not found)
using System;
using System.Text;
class MainClass
{
public static void Main()
{
Type t3 = Type.GetType("System.String", true);
}
}