Exemplo n.º 1
0
 /// <summary>
 /// Determines whether the specified encoding type is valid.
 /// </summary>
 /// <param name="encodingType">Type of the encoding.</param>
 /// <returns>
 ///   <c>true</c> if the specified encoding type is valid; otherwise, <c>false</c>.
 /// </returns>
 public static bool IsValidEncodingType(Id3v2FrameEncodingType encodingType)
 {
     return Enum.TryParse(encodingType.ToString(), true, out encodingType);
 }