var container = new Mono.CSharp.TypeContainer(); container.Add(typeof(MyClass));
var myType = container.Get("MyClass");
var container = new Mono.CSharp.TypeContainer(); var typesInNamespace = container.GetTypesInNamespace("MyNamespace");This code will return an array of all the types within the "MyNamespace" namespace that are contained within the TypeContainer. The Mono.CSharp library is a part of the Mono project, an open source implementation of the .NET framework.