Implemented interface member:
3 references to Equals
System.Runtime.Caching (3)
System\Runtime\Caching\CacheExpires.cs (3)
34
public override bool Equals(object value) => value is ExpiresEntryRef other &&
Equals
(other);
38
public static bool operator ==(ExpiresEntryRef r1, ExpiresEntryRef r2) => r1.
Equals
(r2);
39
public static bool operator !=(ExpiresEntryRef r1, ExpiresEntryRef r2) => !r1.
Equals
(r2);