Convert Color to Strings in C#
To convert a color to a string in C#, we can use the ToString()
method provided by the Color
struct. This method returns a string representation of the color, including its ARGB values.
using System;
using System.Drawing;
class Program
{
static void Main()
{
Color color = Color.FromArgb(255, 10, 60, 20);
string colorString = color.ToString();
Console.WriteLine("Original Color: " + color);
Console.WriteLine("Color as String: " + colorString);
Console.ReadKey();
}
}
Output:
Original Color: Color [A=255, R=10, G=60, B=20]
Color as String: Color [A=255, R=10, G=60, B=20]
In this program, we have created a Color
object (color
) with specific ARGB values. We then converted it to a string using the ToString()
method and printed both the original color and the color as a string.
Comments (0)