in 01-Navigation/4-Contextual_navigation/4.3-Navigate_To_menu_on_method.cs [57:65]
public bool OverloadedMethod(string arg1)
{
if (string.IsNullOrEmpty(arg1))
return false;
Console.WriteLine("do!");
if (arg1 == "throw")
throw new InvalidOperationException();
return true;
}