9 Replies
did you check the docs? https://learn.microsoft.com/en-us/dotnet/api/system.drawing.color.fromargb?view=net-8.0
Color.FromArgb Method (System.Drawing)
Creates a Color structure from the four 8-bit ARGB components (alpha, red, green, and blue) values.
oh, forgot about the docs. Thanks!
so idk what this means
it means you're trying to use the wrong type for whatever variable you're trying to set or method you're trying to call
specifically, you can't use
System.Drawing.Color
for console colors, because console colors are represented by System.ConsoleColor
oh kk
so how do you change
ConsoleColor Enum (System)
Specifies constants that define foreground and background colors for the console.
thats .net framework
it was that simple?
welp