C#C
C#13mo ago
sudfhs

What is the best way to edit a form loaded from Assembly?

basically i don't want to modify the dll itself.
c#
Assembly assembly = Assembly.LoadFrom("Form.dll");
Type type = assembly.GetType("Main.frmMain");
Form form = (Form)Activator.CreateInstance(type);
Was this page helpful?