Assembly asm = Assembly.Load("MyDll"); // Name of the .dll foreach (Type t in asm.GetTypes()) { lblMessage.Text += t.Name + "<br />"; }
Login to post response