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);
 }