public static void Main()
MyMethod(isOn: true, optionalMessage: "hi");
MyMethod(true, optionalMessage: "hi");
MyMethod(optionalMessage: "hi", isOn: true);
var isOn = "A" == "A" ? true : false;
MyMethod2(true, "", "", "", "", "", "", "7");
MyMethod2(true, "1", param7: "7");
public static void MyMethod(bool isOn, string optionalMessage = "")
public static void MyMethod2(