“system.drawing.color from hex” Código de respuesta

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

Respuestas similares a “system.drawing.color from hex”

Preguntas similares a “system.drawing.color from hex”

Más respuestas relacionadas con “system.drawing.color from hex” en C#

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código