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-02 00:45:19 +0400
committerJb Evain <jbevain@gmail.com>2008-05-02 00:45:19 +0400
commitfedf99df53ff0de3ea01e541ea3eb048ff58e80d (patch)
tree6b59e64712f872c6e76bda10067524cb089fe33c /mcs/class/System.Core/System.Linq/IQueryable.cs
parentf2ab023d8d9b656b27c5d51afd7f4e7e2b4b112c (diff)
clean this mess once in for all
svn path=/trunk/mcs/; revision=102300
Diffstat (limited to 'mcs/class/System.Core/System.Linq/IQueryable.cs')
-rw-r--r--mcs/class/System.Core/System.Linq/IQueryable.cs19
1 files changed, 9 insertions, 10 deletions
diff --git a/mcs/class/System.Core/System.Linq/IQueryable.cs b/mcs/class/System.Core/System.Linq/IQueryable.cs
index f696452db17..c628b49f69d 100644
--- a/mcs/class/System.Core/System.Linq/IQueryable.cs
+++ b/mcs/class/System.Core/System.Linq/IQueryable.cs
@@ -5,10 +5,10 @@
// distribute, sublicense, and/or sell copies of the Software, and to
// permit persons to whom the Software is furnished to do so, subject to
// the following conditions:
-//
+//
// The above copyright notice and this permission notice shall be
// included in all copies or substantial portions of the Software.
-//
+//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
@@ -25,12 +25,11 @@ using System;
using System.Collections;
using System.Linq.Expressions;
-namespace System.Linq
-{
- public interface IQueryable : IEnumerable
- {
- Type ElementType { get; }
- Expression Expression { get; }
- IQueryProvider Provider { get; }
- }
+namespace System.Linq {
+
+ public interface IQueryable : IEnumerable {
+ Type ElementType { get; }
+ Expression Expression { get; }
+ IQueryProvider Provider { get; }
+ }
}