TakeWhile with expresion

image_pdfimage_print

using System;
using System.Linq;
using System.Collections;
using System.Collections.Generic;
public class MainClass {
public static void Main() {
string[] presidents = {“1234567890123”, “Art”, “Buch”, “Bush”, “Car”, “land”};
IEnumerable items = presidents.TakeWhile(s => s.Length < 10); foreach (string item in items) Console.WriteLine(item); } } [/csharp]

This entry was posted in LINQ. Bookmark the permalink.