System.Text.RegularExpressions.MatchEnumerator.MoveNext C# (CSharp) 메소드

MoveNext() 공개 메소드

public MoveNext ( ) : bool
리턴 bool
        public bool MoveNext() {
            if (_done)
                return false;

            _match = _matchcoll.GetMatch(_curindex++);

            if (_match == null) {
                _done = true;
                return false;
            }

            return true;
        }