Catrobat.IDE.Core.ViewModels.Editor.Formula.FormulaKey.Equals C# (CSharp) Method

Equals() protected method

protected Equals ( FormulaKey other ) : bool
other FormulaKey
return bool
        protected bool Equals(FormulaKey other)
        {
            // auto-implemented by ReSharper
            return _key == other._key && Equals(_localVariable, other._localVariable) && Equals(_globalVariable, other._globalVariable);
        }

Same methods

FormulaKey::Equals ( object obj ) : bool