Exemplo n.º 1
0
 private void CheckInitResult(RESULT result, string cause)
 {
     if (result != 0)
     {
         if (studioSystem.isValid())
         {
             studioSystem.release();
             studioSystem.clearHandle();
         }
         throw new SystemNotInitializedException(result, cause);
     }
 }