예제 #1
0
 public bool Equals(IdValueBase <T> other)
 {
     if (ReferenceEquals(null, other))
     {
         return(false);
     }
     return(Equals(Value, other.Value));
 }
예제 #2
0
 /// <inheritdoc />
 public override void Write(Utf8JsonWriter writer, IdValueBase <Guid> value, JsonSerializerOptions options)
 {
     writer.WriteStringValue(value.Value.ToString("N"));
 }