Bladeren bron

2010-04-16 Sebastien Pouliot <[email protected]>

	* HashSet.cs: Implement ISet<T> in MOONLIGHT too


svn path=/trunk/mcs/; revision=155628
Sebastien Pouliot 15 jaren geleden
bovenliggende
commit
bfaef1e6bc

+ 4 - 0
mcs/class/System.Core/System.Collections.Generic/ChangeLog

@@ -1,3 +1,7 @@
+2010-04-16  Sebastien Pouliot  <[email protected]>
+
+	* HashSet.cs: Implement ISet<T> in MOONLIGHT too
+
 2010-02-13 Gonzalo Paniagua Javier <[email protected]>
 
 	* HashSet.cs: fix and test for bug #579791.  Patch from Tiaan

+ 1 - 1
mcs/class/System.Core/System.Collections.Generic/HashSet.cs

@@ -44,7 +44,7 @@ namespace System.Collections.Generic {
 	[DebuggerDisplay ("Count={Count}")]
 	[DebuggerTypeProxy (typeof (CollectionDebuggerView<,>))]
 	public class HashSet<T> : ICollection<T>, ISerializable, IDeserializationCallback
-#if NET_4_0
+#if NET_4_0 || MOONLIGHT
 							, ISet<T>
 #endif
 	{