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