Exemple #1
0
 public void SetInt32Value(int columnIndex, int?value)
 {
     NullableInt32 tempvalue = value.HasValue ? new NullableInt32(value.Value) : null;
     {
         CommonPINVOKE.DataRow_SetInt32Value__SWIG_0(swigCPtr, columnIndex, NullableInt32.getCPtr(tempvalue));
         if (CommonPINVOKE.SWIGPendingException.Pending)
         {
             throw CommonPINVOKE.SWIGPendingException.Retrieve();
         }
     }
 }