/// <summary>
        /// Returns the string representation of the int value backing <see cref="LibsndfileError"/>.
        /// </summary>
        /// <param name="error"><see cref="LibsndfileError"/> error code.</param>
        /// <returns>Description of the given error code.</returns>
        public string ErrorNumber(int error)
        {
            var retval = LibsndfileApiNative.sf_error_number(error);

            return(m_Marshaller.MemoryHandleToString(retval));
        }