StoryTeller.Model.Option.Equals C# (CSharp) Method

Equals() protected method

protected Equals ( Option other ) : bool
other Option
return bool
        protected bool Equals(Option other)
        {
            return string.Equals(display, other.display) && string.Equals(value, other.value);
        }

Same methods

Option::Equals ( object obj ) : bool