System.IO.Win32Marshal.GetMessage C# (CSharp) Méthode

GetMessage() static private méthode

Returns a string message for the specified Win32 error code.
static private GetMessage ( int errorCode ) : string
errorCode int
Résultat string
        internal static string GetMessage(int errorCode)
        {
            return Interop.Kernel32.GetMessage(errorCode);
        }
    }