What can we do with a VBColor in C#? For example, let's take vbRed = 255.
In C# we can choose:
Color.FromArgb(int red, int green, int blue)
Color.FromKnownColor(System.Drawing.KnownColor color)
Color.FromName(string name)
or an already named color.
These do not help.
However, if we convert the decimal 255 to hex, we get: 0000FF, a BGR value. This can be easily converted into an RGB value, and giving this string to Color.FromName("#FF0000"), we get the color we wanted from the first place.
exp: 12615935(dec) = C080FF(hex) in BGR = FF80C0(hex) in RGB
"#FF80C0" - gives in C# the color we wanted.