aquilae / Aq.Interop.ErrorCodes

OS-specific error codes for .NET

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Aq.Interop.ErrorCodes

OS-specific error codes for .NET

using static Aq.Interop.PlatformErrors

class Program {
  void Main() {
    int errno = ...;
    if (ENOENT == errno) {
      throw new Exception("Not Exists")
    }
  }
}

About

OS-specific error codes for .NET

License:ISC License


Languages

Language:C# 99.1%Language:Batchfile 0.9%