“System.Drawing.color from Hex” Kod odpowiedzi

System.Drawing.color from 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

Odpowiedzi podobne do “System.Drawing.color from Hex”

Pytania podobne do “System.Drawing.color from Hex”

Więcej pokrewnych odpowiedzi na “System.Drawing.color from Hex” w C#

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu