System.Text.RegularExpressions.MatchCollection.GetEnumerator C# (CSharp) 메소드

GetEnumerator() 공개 메소드

public GetEnumerator ( ) : System.Collections.IEnumerator
리턴 System.Collections.IEnumerator
        public System.Collections.IEnumerator GetEnumerator()
        {
            throw null;
        }

Usage Example

예제 #1
0
 public TextHighlighter(
     Page page,
     MatchCollection matches
     )
 {
     this.page = page;
     this.matchEnumerator = matches.GetEnumerator();
 }
All Usage Examples Of System.Text.RegularExpressions.MatchCollection::GetEnumerator