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

            if (other == null)
            {
                return(false);
            }

            return(Value.Equals(other.Value) && LuryTypeName.Equals(other.LuryTypeName));
        }
Exemple #2
0
 public override int GetHashCode()
 {
     return(Value.GetHashCode() ^ LuryTypeName.GetHashCode());
 }