public override bool Equals(object obj) { MatchExternalState mes = obj as MatchExternalState; return(mes != null && mes.GetHashCode() == this.GetHashCode()); }
private void EnsureExternalObjects() { m_mes = !string.IsNullOrEmpty(this.ExtendedState.Value) ? LineSerializeHelper.StringToObject <MatchExternalState>(this.ExtendedState.Value) : new MatchExternalState(); }