System.Text.RegularExpressions.MatchCollection.GetEnumerator C# (CSharp) Method

GetEnumerator() public method

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

Usage Example

コード例 #1
0
ファイル: TextHighlightSample.cs プロジェクト: n9/pdfclown
 public TextHighlighter(
     Page page,
     MatchCollection matches
     )
 {
     this.page = page;
     this.matchEnumerator = matches.GetEnumerator();
 }
All Usage Examples Of System.Text.RegularExpressions.MatchCollection::GetEnumerator