How to Use iterator to traverse File Information

Source: Internet
Author: User

1. iterate the row of the file
Copy codeThe Code is as follows:
Public static IEnumerable <string> ReadLines (string fileName)
{
Using (TextReader reader = File. OpenText (fileName ))
{
String line;
If (line = reader. ReadLine ())! = Null)
{
Yield return line;
}
}
}
Static void Main ()
{
Foreach (string line in Iterator. ReadLines (""))
{
Console. WriteLine (line );
}
}

2. Use the iterator and predicate to filter rows in the file.
Copy codeThe Code is as follows:
Public static IEnumerable <T> where <T> (IEnumerable <T> source, Predicate <T> predicate)
{
If (source = null | predicate = null)
{
Throw new ArgumentNullException ();
}
Return WhereImplemeter (source, predicate );
}
Private static IEnumerable <T> WhereImplemeter <T> (IEnumerable <T> source, Predicate <T> predicate)
{
Foreach (T item in source)
{
If (predicate (item ))
{
Yield return item;
}
}
}
Static void Main ()
{
IEnumerable <string> lines = File. ReadAllLines (@ "your file name ");
Predicate <string> predicate = delegate (string line)
{
Return line. StartsWith ("using ");
};
Foreach (string str in where (lines, predicate ))
{
Console. WriteLine (str );
}

}

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.