The typeName parameter is a combination of the Assembly and Type names
using System; using System.Reflection; class ReflectOnlyType { static void Main() { Type zType = Type.ReflectionOnlyGetType("ReflectOnlyType", false, false); Console.WriteLine(zType.Name); } }