System.IO.Win32Marshal.GetMessage C# (CSharp) 메소드

GetMessage() 정적인 개인적인 메소드

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