Exemple #1
0
        /// <summary>
        ///     Determines whether the specified indicator is equal to the current indicator.
        /// </summary>
        /// <param name="i">The indicator to compare with the current indicator.</param>
        /// <returns>true if the specified indicator is equal to the current indicator; otherwise, false.</returns>
        public bool Equals(Indicator i)
        {
            if ((object)i != null)
            {
                return(_scintilla.Equals(_scintilla) &&
                       _index.Equals(i._index));
            }

            return(false);
        }