Catrobat.IDE.Core.Xml.XmlObjects.XmlLookList.Equals C# (CSharp) Method

Equals() public method

public Equals ( System obj ) : bool
obj System
return bool
        public override bool Equals(System.Object obj)
        {
            XmlLookList l = obj as XmlLookList;
            if ((object)l == null)
            {
                return false;
            }

            return this.Equals(l);
        }

Same methods

XmlLookList::Equals ( XmlLookList l ) : bool