Example #1
0
        override public bool Equals(object obj)
        {
            if (obj == null)
            {
                return(false);
            }
            ActionPocket actionPocket = obj as ActionPocket;

            if (actionPocket == null)
            {
                return(false);
            }
            return(this.Equals(actionPocket));
        }
Example #2
0
        override public bool Equals(object _object)
        {
            if (_object == null)
            {
                return(false);
            }
            ActionPocket actionPocket = _object as ActionPocket;

            if (actionPocket == null)
            {
                return(false);
            }
            return(this.Equals(actionPocket));
        }