Example #1
0
 public void SetBooleanValue(int columnIndex, bool?value)
 {
     NullableBool tempvalue = value.HasValue ? new NullableBool(value.Value) : null;
     {
         CommonPINVOKE.DataRow_SetBooleanValue__SWIG_0(swigCPtr, columnIndex, NullableBool.getCPtr(tempvalue));
         if (CommonPINVOKE.SWIGPendingException.Pending)
         {
             throw CommonPINVOKE.SWIGPendingException.Retrieve();
         }
     }
 }