Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJb Evain <jbevain@gmail.com>2008-05-14 18:30:20 +0400
committerJb Evain <jbevain@gmail.com>2008-05-14 18:30:20 +0400
commitdd1c7426f372c88f6cd4e2898b1a4d9b937116b2 (patch)
tree934ceb5e23a4a13203941081624e8e3673f6c447 /mcs/class/System.Core/System.Linq/Queryable.cs
parentd768c1abdb41ad18562c5d7e2d7a9fa6ba3c8140 (diff)
reformat
svn path=/trunk/mcs/; revision=103190
Diffstat (limited to 'mcs/class/System.Core/System.Linq/Queryable.cs')
-rw-r--r--mcs/class/System.Core/System.Linq/Queryable.cs22
1 files changed, 11 insertions, 11 deletions
diff --git a/mcs/class/System.Core/System.Linq/Queryable.cs b/mcs/class/System.Core/System.Linq/Queryable.cs
index b7db861f8d8..3daf0e05303 100644
--- a/mcs/class/System.Core/System.Linq/Queryable.cs
+++ b/mcs/class/System.Core/System.Linq/Queryable.cs
@@ -74,23 +74,23 @@ namespace System.Linq {
{
Check.SourceAndFunc (source, func);
return source.Provider.Execute<TAccumulate> (
- StaticCall (
- MakeGeneric (MethodBase.GetCurrentMethod (), typeof (TSource), typeof (TAccumulate)),
- source.Expression,
- Expression.Constant (seed),
- Expression.Quote (func)));
+ StaticCall (
+ MakeGeneric (MethodBase.GetCurrentMethod (), typeof (TSource), typeof (TAccumulate)),
+ source.Expression,
+ Expression.Constant (seed),
+ Expression.Quote (func)));
}
public static TResult Aggregate<TSource, TAccumulate, TResult> (this IQueryable<TSource> source, TAccumulate seed, Expression<Func<TAccumulate, TSource, TAccumulate>> func, Expression<Func<TAccumulate, TResult>> selector)
{
Check.SourceAndFuncAndSelector (source, func, selector);
return source.Provider.Execute<TResult> (
- StaticCall (
- MakeGeneric (MethodBase.GetCurrentMethod (), typeof (TSource), typeof (TAccumulate), typeof (TResult)),
- source.Expression,
- Expression.Constant (seed),
- Expression.Quote (func),
- Expression.Quote (selector)));
+ StaticCall (
+ MakeGeneric (MethodBase.GetCurrentMethod (), typeof (TSource), typeof (TAccumulate), typeof (TResult)),
+ source.Expression,
+ Expression.Constant (seed),
+ Expression.Quote (func),
+ Expression.Quote (selector)));
}
#endregion