Faceboiii
❔ Best way to convert rgb to ConsoleColor?
Hey, so I have a Console App, where I want to transition between 2 colors( and output the color as backgroundcolor). I have the main code from ChatGPT for test cases, and the RGBToConsoleColor from stackoverflow. However, the transition seems kinda buggy (when transitioning from black to white it goes
black, green, light gray, dark gray, white
). Does anyone know a better/more accurate way to convert rgb values to ConsoleColor?6 replies
❔ Implicate without condition
Hey, I need to multiple bools to imply a bool. If I'm not wrong, in logic it would look like this:
bool1 ^ bool2 => bool3
. However I couldn't find out how to do that in C# without using conditions (like bool bool3 = bool2 && bool1
). I hope someone can help me :))64 replies