using System; using System.Collections.Generic; using System.Reflection; namespace ET { public static class AssemblyHelper { public static Dictionary GetAssemblyTypes(params Assembly[] args) { Dictionary types = new Dictionary(); foreach (Assembly ass in args) { foreach (Type type in ass.GetTypes()) { types[type.FullName] = type; } } return types; } } }