Antlr4.Runtime.Atn.ConflictInfo.Equals C# (CSharp) Метод

Equals() публичный Метод

public Equals ( object obj ) : bool
obj object
Результат bool
        public override bool Equals(object obj)
        {
            if (obj == this)
            {
                return true;
            }
            else
            {
                if (!(obj is Antlr4.Runtime.Atn.ConflictInfo))
                {
                    return false;
                }
            }
            Antlr4.Runtime.Atn.ConflictInfo other = (Antlr4.Runtime.Atn.ConflictInfo)obj;
            return IsExact == other.IsExact && Utils.Equals(ConflictedAlts, other.ConflictedAlts);
        }