Ejemplo n.º 1
0
 public void SetInt16Value(string columnName, short?value)
 {
     NullableInt16 tempvalue = value.HasValue ? new NullableInt16(value.Value) : null;
     {
         CommonPINVOKE.DataRow_SetInt16Value__SWIG_1(swigCPtr, columnName, NullableInt16.getCPtr(tempvalue));
         if (CommonPINVOKE.SWIGPendingException.Pending)
         {
             throw CommonPINVOKE.SWIGPendingException.Retrieve();
         }
     }
 }