Beispiel #1
0
 public void SetGuidValue(int columnIndex, System.Guid?value)
 {
     NullableGuid tempvalue = value.HasValue ? new NullableGuid(Common.ParseGuid(value.Value.ToByteArray(), true)) : null;
     {
         CommonPINVOKE.DataRow_SetGuidValue__SWIG_0(swigCPtr, columnIndex, NullableGuid.getCPtr(tempvalue));
         if (CommonPINVOKE.SWIGPendingException.Pending)
         {
             throw CommonPINVOKE.SWIGPendingException.Retrieve();
         }
     }
 }