public string Serialize(Color color) { color.ThrowIfNull("color"); return String.Format("{0},{1},{2},{3}", color.R, color.G, color.B, color.A); }