コード例 #1
0
ファイル: CVUtils.cs プロジェクト: ashersyed/opencvdotnet
 internal static void CheckLastError()
 {
     if (_errorContext != null)
     {
         CVException cve = new CVException(_errorContext);
         _errorContext = null;
         throw cve;
     }
 }