Justin wrote: > Is there a way to "find" a classinfo for such a class at runtime? The slow way: foreach (modul; ModuleInfo) foreach (info; modul.localClasses) if (info.name == name) return info; return null;