Beispiel #1
0
 public void CallDeSerialize(ref Guid value)
 {
     getValue();
     if (State == DeSerializeState.Success)
     {
         if (valueSize == 36)
         {
             GuidCreator guid = new GuidCreator();
             deSerialize(ref guid);
             value = guid.Value;
             getValueEnd();
         }
         else
         {
             State = DeSerializeState.NotGuid;
         }
     }
 }
 internal bool Equals(GuidCreator other)
 {
     return(((ULong0 ^ other.ULong0) | (ULong1 ^ other.ULong1)) == 0);
 }