sudfhs
sudfhs
CC#
Created by sudfhs on 12/14/2024 in #help
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);
c#
Assembly assembly = Assembly.LoadFrom("Form.dll");
Type type = assembly.GetType("Main.frmMain");
Form form = (Form)Activator.CreateInstance(type);
2 replies