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