Exemple #1
0
 public void SetInt64Value(string columnName, long?value)
 {
     NullableInt64 tempvalue = value.HasValue ? new NullableInt64(value.Value) : null;
     {
         CommonPINVOKE.DataRow_SetInt64Value__SWIG_1(swigCPtr, columnName, NullableInt64.getCPtr(tempvalue));
         if (CommonPINVOKE.SWIGPendingException.Pending)
         {
             throw CommonPINVOKE.SWIGPendingException.Retrieve();
         }
     }
 }