“System.Drawing.Color от Hex” Ответ

System.Drawing.Color от Hex

 System.Drawing.ColorTranslator.FromHtml("[YOUR COLOR]");
Doctor Strange

System.Drawing.color to System.consolecolor

int index = (c.R > 128 | c.G > 128 | c.B > 128) ? 8 : 0;
                index |= (c.R > 64) ? 4 : 0; 
                index |= (c.G > 64) ? 2 : 0; 
                index |= (c.B > 64) ? 1 : 0; 
                Console.ForegroundColor = (System.ConsoleColor)index;
Jules

Ответы похожие на “System.Drawing.Color от Hex”

Вопросы похожие на “System.Drawing.Color от Hex”

Больше похожих ответов на “System.Drawing.Color от Hex” по C#

Смотреть популярные ответы по языку

Смотреть другие языки программирования