using System.ComponentModel;
using System.Runtime.InteropServices;
/// <summary>
/// Gets the last windows error.
/// </summary>
/// <returns></returns>
private string GetLastWindowsError()
{
return new Win32Exception(Marshal.GetLastWin32Error()).Message;
}
|