06 2009 档案
摘要:[代码]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...
阅读全文
摘要:Func<(Of <(TSource, Decimal>)>)TSource表示该函数的输入参数的类型。(即数据源的数据类型)Decimal表示该函数的的返回值类型。如:public static decimal lll(string inp) { return Convert.ToDecimal(inp); }
阅读全文
摘要:确定序列中的所有元素是否满足条件。 类型参数TSource source 中的元素的类型。 参数source 类型:System.Collections.Generic..::.IEnumerable<(Of <(TSource>)>)包含要应用谓词的元素的 IEnumerable<(Of <(T>)>)。 predicate 类型:System.....
阅读全文
摘要:对序列应用累加器函数。C#public static TSource Aggregate<TSource>( this IEnumerable<TSource> source, Func<TSource, TSource, TSource> func)类型参数TSource source 中的元素的类型。 参数source 类型:System.Collectio...
阅读全文