상속: 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);
 }