Inheritance: ValueObjectBase
 public bool Equals(SerializationOptions other)
 {
     return((other != null) && GetHashCode().Equals(other.GetHashCode()));
 }
Example #2
0
 public bool Equals(SerializationOptions other) {
     return (other != null) && GetHashCode().Equals(other.GetHashCode());
 }
 public CacheKey(Type objectType, SerializationOptions options)
 {
     ObjectType = objectType;
     Options    = options;
 }