摘要: public class Skip_LINQ { public static void Skip_Print() { int[] random = { 87, 2, 76, 90, 100, 65, 5, 22, 70 }; //IEnumerable<int> query = random.OrderBy(r => r).Skip(4); IEnumerable<int&... 阅读全文
posted @ 2010-04-17 22:09 CityWalker 阅读(333) 评论(0) 推荐(0) 编辑
摘要: public class All_LINQ { public static void All_Print() { int[] num = { 1, 2, 34, 54, 45, 63, 90 }; Console.WriteLine(num.All(c => c % 2 == 0)); Console.WriteLine(num.All(c => c>= 0)); } publi... 阅读全文
posted @ 2010-04-17 22:08 CityWalker 阅读(235) 评论(0) 推荐(0) 编辑
摘要: public class SequenceEqual_LINQ { public static void SequenceEqual_Print() { int[] numbers1 = { 1, 2, 3, 4, 5, 4, 5 }; int[] numbers2 = { 1, 2, 3, 4, 5, 4, 5 }; int[] numbers3 = { 1, 2, 3, 4, 5 }; Con... 阅读全文
posted @ 2010-04-17 22:07 CityWalker 阅读(188) 评论(0) 推荐(0) 编辑
摘要: public class DefaultIfEmpty_LINQ { static string ContextString = System.Configuration.ConfigurationSettings.AppSettings["ContextString"].ToString(); static DataContext context = new DataContext(Contex... 阅读全文
posted @ 2010-04-17 22:05 CityWalker 阅读(213) 评论(0) 推荐(0) 编辑
摘要: public class AsEnumerable_LINQ { static string ContextString = System.Configuration.ConfigurationSettings.AppSettings["ContextString"].ToString(); static DataContext context = new DataContext(ContextS... 阅读全文
posted @ 2010-04-17 22:02 CityWalker 阅读(268) 评论(0) 推荐(0) 编辑
摘要: public class Empty_LINQ { public static void Empty_Print() { string[] name1 = { "Asfs", "Steve" }; string[] name2 = { "Joe", "Jhon", "Sawyer", "Sayid" }; string[] name3 = { "Dave", "Kate", "Juliet", "... 阅读全文
posted @ 2010-04-17 22:01 CityWalker 阅读(170) 评论(0) 推荐(0) 编辑
摘要: public class Distinct_LINQ { public static void Distinct_Print() { List<int> quantity = new List<int> { 1, 1, 2, 3, 4, 5, 6, 7, 7, 8, 9, 9, 10 }; IEnumerable<int> val = quantity.Dist... 阅读全文
posted @ 2010-04-17 21:59 CityWalker 阅读(308) 评论(0) 推荐(0) 编辑
摘要: public class Aggregate_LINQ { static string ContextString = System.Configuration.ConfigurationSettings.AppSettings["ContextString"].ToString(); static DataContext context = new DataContext(ContextStri... 阅读全文
posted @ 2010-04-17 21:56 CityWalker 阅读(294) 评论(0) 推荐(0) 编辑
摘要: public class Concat_LINQ { static string ContextString = System.Configuration.ConfigurationSettings.AppSettings["ContextString"].ToString(); static DataContext context = new DataContext(ContextString)... 阅读全文
posted @ 2010-04-17 21:38 CityWalker 阅读(180) 评论(0) 推荐(0) 编辑
摘要: public class GroupBy_LINQ { static string ContextString = System.Configuration.ConfigurationSettings.AppSettings["ContextString"].ToString(); static DataContext context = new DataContext(ContextString... 阅读全文
posted @ 2010-04-17 21:34 CityWalker 阅读(559) 评论(0) 推荐(0) 编辑
摘要: public class Join_LINQ { static string ContextString = System.Configuration.ConfigurationSettings.AppSettings["ContextString"].ToString(); static DataContext context = new DataContext(ContextString);... 阅读全文
posted @ 2010-04-17 21:26 CityWalker 阅读(239) 评论(0) 推荐(0) 编辑
摘要: public class OrderBy_LINQ { static string ContextString = System.Configuration.ConfigurationSettings.AppSettings["ContextString"].ToString(); static DataContext context = new DataContext(ContextStrin... 阅读全文
posted @ 2010-04-17 21:20 CityWalker 阅读(264) 评论(0) 推荐(0) 编辑
摘要: public class Where_LINQ { public static string ContextString = System.Configuration.ConfigurationSettings.AppSettings["ContextString"].ToString(); public static void Print() { DataContext context = n... 阅读全文
posted @ 2010-04-17 21:17 CityWalker 阅读(182) 评论(0) 推荐(0) 编辑
摘要: public class Select_LINQ { public static string ContextString = System.Configuration.ConfigurationSettings.AppSettings["ContextString"].ToString(); public static void Print() { DataContext context = ... 阅读全文
posted @ 2010-04-17 21:14 CityWalker 阅读(280) 评论(0) 推荐(0) 编辑
天天来