Exemplo n.º 1
0
 public void SetInt64Value(int columnIndex, long?value)
 {
     NullableInt64 tempvalue = value.HasValue ? new NullableInt64(value.Value) : null;
     {
         CommonPINVOKE.DataRow_SetInt64Value__SWIG_0(swigCPtr, columnIndex, NullableInt64.getCPtr(tempvalue));
         if (CommonPINVOKE.SWIGPendingException.Pending)
         {
             throw CommonPINVOKE.SWIGPendingException.Retrieve();
         }
     }
 }