コード例 #1
0
 /// <summary>
 /// Converts this <see cref="MediaColor" /> object to a HTML color <see cref="string" />.
 /// <para>Example: #ff7f00</para>
 /// </summary>
 /// <param name="color">The <see cref="MediaColor" /> object to convert.</param>
 /// <returns>
 /// An equivalent HTML color <see cref="string" /> representation of this <see cref="MediaColor" />.
 /// </returns>
 public static string ToHtmlString(this MediaColor color)
 {
     return(color.ToHtmlString(false));
 }