public NotCondition(Condition condition)
 {
     this._obj = (IUIAutomationNotCondition)
                 Automation.Factory.CreateNotCondition(
         ConditionManagedToNative(condition));
 }
 internal NotCondition(IUIAutomationNotCondition obj)
 {
     Debug.Assert(obj != null);
     this._obj = obj;
 }