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