Loading

06 2009 档案

摘要:[代码] 阅读全文
posted @ 2009-06-29 23:23 .net's 阅读(3264) 评论(0) 推荐(1)
摘要:[代码] 阅读全文
posted @ 2009-06-18 20:24 .net's 阅读(1870) 评论(0) 推荐(0)
摘要:[代码]ref:http://social.msdn.microsoft.com/Forums/en-US/csharplanguage/thread/4992c9ef-59cc-41ec-bae0-43b7e335560dhttp://groups.google.com/group/microsoft.public.dotnet.framework.windowsforms/msg/0a0b6b... 阅读全文
posted @ 2009-06-11 21:23 .net's 阅读(613) 评论(0) 推荐(0)
摘要:Func<(Of <(TSource, Decimal>)>)TSource表示该函数的输入参数的类型。(即数据源的数据类型)Decimal表示该函数的的返回值类型。如:public static decimal lll(string inp) { return Convert.ToDecimal(inp); } 阅读全文
posted @ 2009-06-05 21:54 .net's 阅读(710) 评论(0) 推荐(0)
摘要:确定序列中的所有元素是否满足条件。 类型参数TSource source 中的元素的类型。 参数source 类型:System.Collections.Generic..::.IEnumerable<(Of <(TSource>)>)包含要应用谓词的元素的 IEnumerable<(Of <(T>)>)。 predicate 类型:System..... 阅读全文
posted @ 2009-06-05 20:53 .net's 阅读(531) 评论(0) 推荐(0)
摘要:对序列应用累加器函数。C#public static TSource Aggregate<TSource>( this IEnumerable<TSource> source, Func<TSource, TSource, TSource> func)类型参数TSource source 中的元素的类型。 参数source 类型:System.Collectio... 阅读全文
posted @ 2009-06-05 20:28 .net's 阅读(1752) 评论(0) 推荐(0)