Exemple #1
0
        public override bool Equals(object obj)
        {
            var other = obj as UniqueIdentifier;

            return(other != null && GetType() == other.GetType() && Key.Equals(other.Key));
        }
Exemple #2
0
 public bool Equals(LegacyGrainId other)
 {
     return(other != null && Key.Equals(other.Key));
 }
Exemple #3
0
        public override bool Equals(object obj)
        {
            var o = obj as ActivationId;

            return(o != null && Key.Equals(o.Key));
        }