Example #1
0
            public bool MoveNext()
            {
                bool flag = _enumerator.HasMoreElements();

                if (flag)
                {
                    _currentCookie = (nsICookie2)_enumerator.GetNext();
                }
                return(flag);
            }
Example #2
0
        public bool MoveNext()
        {
            bool flag = _enumerator.HasMoreElements();

            if (flag)
            {
                var obj = _enumerator.GetNext();
                _current = ( TGeckoObject )obj;
            }
            return(flag);
        }