public bool Equals(SerializationOptions other) { return((other != null) && GetHashCode().Equals(other.GetHashCode())); }
public bool Equals(SerializationOptions other) { return (other != null) && GetHashCode().Equals(other.GetHashCode()); }
public CacheKey(Type objectType, SerializationOptions options) { ObjectType = objectType; Options = options; }