Esempio n. 1
0
File: RCS.cs Progetto: IronFox/Shard
        public override bool Equals(object obj)
        {
            if (obj == this)
            {
                return(true);
            }
            var other = obj as RCS;

            if (other == null)
            {
                return(false);
            }
            if (!IC.Equals(other.IC))
            {
                return(false);
            }
            return(CS.Equals(other.CS));
        }
Esempio n. 2
0
File: SDS.cs Progetto: IronFox/Shard
 public bool ICMessagesAndEntitiesAreEqual(SDS other)
 {
     return(IC.Equals(other.IC) &&
            Helper.AreEqual(FinalEntities, other.FinalEntities)
            );
 }