public override Element Clone() { EString el = new EString(); el.value = value; return(el); }
public override bool Equals(object obj) { //Check for null and compare run-time types. if ((obj == null) || !this.GetType().Equals(obj.GetType())) { return(false); } else { EString other = (EString)obj; return(value == other.value); } }