using System;
using System.Linq;
using DryIoc;
public class Program
{
public static void Main()
var c = new Container();
c.RegisterMany(
typeof(Program).GetAssembly().GetLoadedTypes()
.Where(type => type.IsClass));
Console.WriteLine("If you see it, it works");
}
public enum X { Y }