Warning: WP_Syntax::substituteToken(): Argument #1 ($match) must be passed by reference, value given in D:\InetPub\vhosts\kwu-1639.package\kennywu.info\wwwroot\wp-content\plugins\wp-syntax\wp-syntax.php on line 380
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace LinqToObjects { class LinqToObjects { static void Main(string[] args) { string[] names = { "James Huddleston", "Pearly", "Ami Know", "Rupli Agarwal", "Beth Christams", "Fabio Claudio", "Vamika Agarwal", "Vidya Varat Agrawaaaa"}; IEnumerable<string> namesOfPeople = from name in names where name.Length >9 select name; foreach (var name in namesOfPeople) { Console.WriteLine(name); } } } } |