Skip with string starting with A in CSharp
Description
The following code shows how to skip with string starting with A.
Example
//www . ja v a 2s .c o m
using System;
using System.Linq;
using System.Collections;
using System.Collections.Generic;
public class MainClass {
public static void Main() {
string[] presidents = {"Ant", "arding", "arrison", "ayes", "Hoover", "ackson"};
IEnumerable<string> items = presidents.SkipWhile(s => s.StartsWith("A"));
foreach (string item in items)
Console.WriteLine(item);
}
}
The code above generates the following result.