I\'m trying to make a custom message box with my controls.
public static partial class Msg : Form { public static void show(string content, string descri
You don't need the class to be static. Just do something like:
public partial class Msg : Form { public static void show(string content, string description) { Msg message = new Msg(...); message.show(); } }