Ejemplo n.º 1
0
        public static string GetLocalizationKey(this CommandLineErrorCode code)
        {
            CommandLineErrorCodeAttribute attribute = (CommandLineErrorCodeAttribute)Cache[code];

            return(attribute?.LocalizationKey);
        }
Ejemplo n.º 2
0
        public static string GetDefaultMessage(this CommandLineErrorCode code)
        {
            CommandLineErrorCodeAttribute attribute = (CommandLineErrorCodeAttribute)Cache[code];

            return(attribute != null ? attribute.DefaultMessage : string.Empty);
        }