Hello, I would like to know if it is possible to recover all classes in the project in D.

Example in c# :

Assembly asm = Assembly.GetAssembly(typeof(MyClass));

foreach (Type type in asm.GetTypes())
{
}

Reply via email to