color-name

How to convert RGB value to color name in Silverlight 4.0?

The code : Dim myColor As Color = Colors.Red Dim colorName As String = myColor.ToString() Results in : #FFFF0000 when printing colorName to screen. Is it possible to get the color name in Silverlight without making a select case on the RGB values? ...