Пример #1
0
 public void SetDecimalValue(int columnIndex, decimal?value)
 {
     NullableDecimal tempvalue = value.HasValue ? new NullableDecimal(Common.ParseDecimal(value.Value.ToString())) : null;
     {
         CommonPINVOKE.DataRow_SetDecimalValue__SWIG_0(swigCPtr, columnIndex, NullableDecimal.getCPtr(tempvalue));
         if (CommonPINVOKE.SWIGPendingException.Pending)
         {
             throw CommonPINVOKE.SWIGPendingException.Retrieve();
         }
     }
 }