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 01:07:56 +0400
committerJb Evain <jbevain@gmail.com>2008-05-02 01:07:56 +0400
commitef5e927b95d4f809dbd35d6666f6595622604b24 (patch)
tree56d53ea8cccf6a4bd40b23b1c5f5187b0a6d56cb /mcs/class/System.Core/System.Linq/Lookup.cs
parentfedf99df53ff0de3ea01e541ea3eb048ff58e80d (diff)
oops
svn path=/trunk/mcs/; revision=102302
Diffstat (limited to 'mcs/class/System.Core/System.Linq/Lookup.cs')
-rw-r--r--mcs/class/System.Core/System.Linq/Lookup.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/mcs/class/System.Core/System.Linq/Lookup.cs b/mcs/class/System.Core/System.Linq/Lookup.cs
index b3e13a6149e..d5f5d450103 100644
--- a/mcs/class/System.Core/System.Linq/Lookup.cs
+++ b/mcs/class/System.Core/System.Linq/Lookup.cs
@@ -34,7 +34,7 @@ using System.Collections.Generic;
namespace System.Linq {
- class Lookup<TKey, TElement> : IEnumerable<IGrouping<TKey, TElement>>, ILookup<TKey, TElement> {
+ public class Lookup<TKey, TElement> : IEnumerable<IGrouping<TKey, TElement>>, ILookup<TKey, TElement> {
Dictionary<TKey, IGrouping<TKey, TElement>> groups;