I have two Projects in one solution, project A and project B (using VS2010 Ultimate and C# windows application). Project B ac
project A
project B
using VS2010 Ultimate and C# windows application
Project B
Assembly[] assemblies = AppDomain.CurrentDomain.GetAssemblies(); foreach (Assembly a in assemblies) { Type[] types = a.GetTypes(); foreach (Type t in types) { if (t.BaseType == typeof(Form)) { //Do Your works } } }