编程语言
首页 > 编程语言> > c# – 在Application Exit上指定返回错误代码

c# – 在Application Exit上指定返回错误代码

作者:互联网

如何在应用程序退出时指定返回错误代码?如果这是一个VC应用程序,我可以使用SetLastError(ERROR_ACCESS_DENIED) – 返回GetLastError()API.有没有办法在C#中做到这一点?

  static int Main(string[] args)
  {
     Tool.Args = args;

     Application.EnableVisualStyles();
     Application.SetCompatibleTextRenderingDefault(false);
     Application.Run(new Download_Tool());

     return Tool.ErrorCode;
  }

如何设置Tool.ErrorCode值可理解?如果我尝试像Tool.ErrorCode = ERROR_ACCESS_DENIED这样的东西,我会收到一个错误,“当前上下文中不存在名称ERROR_ACCESS_DENIED”.谢谢.

附加信息

我的例子过于简化了.有没有办法这样的事情:

Tool.ErrorCode = ERROR_ACCESS_DENIED;
return Tool.ErrorCode;

…生成编译错误,而不是:

Tool.ErrorCode = 5;
return Tool.ErrorCode;

……哪个有效,但使用了“神奇数字”.我想避免使用魔术数字.

解决方法:

http://msdn.microsoft.com/en-us/library/system.environment.exit.aspx

Environment.Exit(exitCode)

更新

您收到“ERROR_ACCESS_DENIED”编译错误的原因是您尚未定义它.你需要自己定义它:

const int ERROR_ACCESS_DENIED = 5;

然后你可以使用:

Environment.Exit(ERROR_ACCESS_DENIED)

更新2

如果您正在为C#需求寻找一组现成的winerror.h常量,那么它是:

http://www.pinvoke.net/default.aspx/Constants/WINERROR.html

我可能会修改GetErrorName(…)方法来进行一些缓存,例如:

private static Dictionary<int, string> _FieldLookup;

public static bool TryGetErrorName(int result, out string errorName)
{
    if (_FieldLookup == null)
    {
        Dictionary<int, string> tmpLookup = new Dictionary<int, string>();

        FieldInfo[] fields = typeof(ResultWin32).GetFields();

        foreach (FieldInfo field in fields)
        {
            int errorCode = (int)field.GetValue(null);

            tmpLookup.Add(errorCode, field.Name);
        }

        _FieldLookup = tmpLookup;
    }

    return _FieldLookup.TryGetValue(result, out errorName);
}

标签:c,exit-code
来源: https://codeday.me/bug/20190526/1158532.html