Color.Random
I use the following simple class to augment this missing function:
/// <summary>
/// Extra Functions for Colors
/// </summary>
public class ColorPlus
{
/// <summary>
/// returns a random Color
/// </summary>
public static Color Random
{
get
{
Random rand = new Random();
return Color.FromArgb(rand.Next(255), rand.Next(255), rand.Next(255));
}
}
}

