System.IO.Error.GetExceptionForLastWin32DriveError C# (CSharp) 메소드

GetExceptionForLastWin32DriveError() 개인적인 메소드

private GetExceptionForLastWin32DriveError ( String driveName ) : Exception
driveName String
리턴 Exception
        internal static Exception GetExceptionForLastWin32DriveError(String driveName)
        {
            int errorCode = Marshal.GetLastWin32Error();
            return GetExceptionForWin32DriveError(errorCode, driveName);
        }