Antlr4.Codegen.Model.Decl.ContextGetterDecl.Equals C# (CSharp) Метод

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

public Equals ( object obj ) : bool
obj object
Результат bool
        public override bool Equals(object obj)
        {
            if (this == obj)
                return true;
            // A() and label A are different
            if (!(obj is ContextGetterDecl))
                return false;
            return
                name.Equals(((Decl)obj).name) &&
                    GetArgType().Equals(((ContextGetterDecl)obj).GetArgType());
        }
    }