Example #1
0
 public void SetDoubleValue(string columnName, double?value)
 {
     NullableFloat64 tempvalue = value.HasValue ? new NullableFloat64(value.Value) : null;
     {
         CommonPINVOKE.DataRow_SetDoubleValue__SWIG_1(swigCPtr, columnName, NullableFloat64.getCPtr(tempvalue));
         if (CommonPINVOKE.SWIGPendingException.Pending)
         {
             throw CommonPINVOKE.SWIGPendingException.Retrieve();
         }
     }
 }