Exemple #1
0
 public static extern IntPtr Expat_GetErrorDescription(ExpatError error);
Exemple #2
0
        public static string GetDescription(this ExpatError error)
        {
            var ptr = Native.Expat_GetErrorDescription(error);

            return(Marshal.PtrToStringAnsi(ptr));
        }