摘要: class Program { static void ReportTypeProperties<T>(T obj) { Console.WriteLine("Compile-time type: {0}", typeof(T).Name); Console.WriteLine("Actual ty 阅读全文
posted @ 2017-03-24 00:14 蓝平凡 阅读(244) 评论(0) 推荐(0) 编辑
摘要: SkipWhile 找到第一个与给定条件匹配的元素,然后跳过该元素获取剩余元素 从集合第一个元素判断,如果满足条件,则继续判断下一个元素,知道不满足条件后,跳过满足条件的元素返回剩下的序列 Take 阅读全文
posted @ 2017-03-24 00:04 蓝平凡 阅读(1177) 评论(0) 推荐(0) 编辑