/// <summary>
 /// Check to see if the parameters in the <paramref name="info"/> struct are
 /// valid and supported by libsndfile.
 /// </summary>
 /// <param name="info"><see cref="LibsndfileInfo"/> struct contains information about a target file.</param>
 /// <returns>Returns TRUE if the parameters are valid, FALSE otherwise.</returns>
 public bool FormatCheck(ref LibsndfileInfo info)
 {
     return(Convert.ToBoolean(LibsndfileApiNative.sf_format_check(ref info)));
 }