@@ -48,15 +48,23 @@ public static ConsoleColorEnum CreateInstance()
4848
4949 instance = new ConsoleColorEnum ( type , enumValueType ) ;
5050
51- instance . AddValue ( "Белый" , "White" , new CLREnumValueWrapper < ConsoleColor > ( instance , ConsoleColor . White ) ) ;
5251 instance . AddValue ( "Черный" , "Black" , new CLREnumValueWrapper < ConsoleColor > ( instance , ConsoleColor . Black ) ) ;
52+ instance . AddValue ( "ТемноСиний" , "DarkBlue" , new CLREnumValueWrapper < ConsoleColor > ( instance , ConsoleColor . DarkBlue ) ) ;
53+ instance . AddValue ( "ТемноЗеленый" , "DarkGreen" , new CLREnumValueWrapper < ConsoleColor > ( instance , ConsoleColor . DarkGreen ) ) ;
54+ instance . AddValue ( "ТемноБирюзовый" , "DarkCyan" , new CLREnumValueWrapper < ConsoleColor > ( instance , ConsoleColor . DarkCyan ) ) ;
55+ instance . AddValue ( "ТемноКрасный" , "DarkRed" , new CLREnumValueWrapper < ConsoleColor > ( instance , ConsoleColor . DarkRed ) ) ;
56+ instance . AddValue ( "ТемноМалиновый" , "DarkMagenta" , new CLREnumValueWrapper < ConsoleColor > ( instance , ConsoleColor . DarkMagenta ) ) ;
57+ instance . AddValue ( "ТемноЖелтый" , "DarkYellow" , new CLREnumValueWrapper < ConsoleColor > ( instance , ConsoleColor . DarkYellow ) ) ;
58+ instance . AddValue ( "Серый" , "Gray" , new CLREnumValueWrapper < ConsoleColor > ( instance , ConsoleColor . Gray ) ) ;
59+
60+ instance . AddValue ( "ТемноСерый" , "DarkGray" , new CLREnumValueWrapper < ConsoleColor > ( instance , ConsoleColor . DarkGray ) ) ;
5361 instance . AddValue ( "Синий" , "Blue" , new CLREnumValueWrapper < ConsoleColor > ( instance , ConsoleColor . Blue ) ) ;
54- instance . AddValue ( "Желтый" , "Yellow" , new CLREnumValueWrapper < ConsoleColor > ( instance , ConsoleColor . Yellow ) ) ;
55- instance . AddValue ( "Красный" , "Red" , new CLREnumValueWrapper < ConsoleColor > ( instance , ConsoleColor . Red ) ) ;
5662 instance . AddValue ( "Зеленый" , "Green" , new CLREnumValueWrapper < ConsoleColor > ( instance , ConsoleColor . Green ) ) ;
5763 instance . AddValue ( "Бирюза" , "Cyan" , new CLREnumValueWrapper < ConsoleColor > ( instance , ConsoleColor . Cyan ) ) ;
64+ instance . AddValue ( "Красный" , "Red" , new CLREnumValueWrapper < ConsoleColor > ( instance , ConsoleColor . Red ) ) ;
5865 instance . AddValue ( "Малиновый" , "Magenta" , new CLREnumValueWrapper < ConsoleColor > ( instance , ConsoleColor . Magenta ) ) ;
59- instance . AddValue ( "Серый" , "Gray" , new CLREnumValueWrapper < ConsoleColor > ( instance , ConsoleColor . Gray ) ) ;
66+ instance . AddValue ( "Желтый" , "Yellow" , new CLREnumValueWrapper < ConsoleColor > ( instance , ConsoleColor . Yellow ) ) ;
67+ instance . AddValue ( "Белый" , "White" , new CLREnumValueWrapper < ConsoleColor > ( instance , ConsoleColor . White ) ) ;
6068
6169 return instance ;
6270 }
0 commit comments