Suppose there is a simple argument function of the form
public static void Toggle(Panel p) { p.Visible = !p.Visible; } Is it possible to set an undefined argument with no type, so that it applies an action to any given element, be it a panel, a table or a label?
public static void Toggle(Control p) { ...- Igor