public override bool Equals(object obj)
        {
            BindableReadWriteElement element = obj as BindableReadWriteElement;

            if (element == null)
            {
                return(false);
            }
            return(Equals(element));
        }
 public bool Equals (BindableReadWriteElement other)
 {
     return other.Name == Name && other.Integer == Integer;
 }
 public bool Equals(BindableReadWriteElement other)
 {
     return(other.Name == Name && other.Integer == Integer);
 }