public static string Name(int number) { Args.ThrowIf(number < 1 || number > 12, "Invalid month number specified"); return(_months[number]); }