Inheritance: System.Exception
示例#1
0
 public UvArgs(int error)
 {
     _error = error;
     if (_error < 0)
     {
         _exception = new UvException(error);
     }
 }
示例#2
0
文件: UvArgs.cs 项目: gigi81/sharpuv
 public UvArgs(int error)
 {
     _error = error;
     if (_error < 0)
         _exception = new UvException (error);
 }