2
0
Эх сурвалжийг харах

2005-05-06 Martin Baulig <[email protected]>

	* *.cs: Add CLSCompliant(true) where missing.


svn path=/trunk/mcs/; revision=44140
Martin Baulig 21 жил өмнө
parent
commit
f3ef0722d0

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

@@ -1,3 +1,7 @@
+2005-05-06  Martin Baulig  <[email protected]>
+
+	* *.cs: Add CLSCompliant(true) where missing.
+
 2005-05-06  Zoltan Varga  <[email protected]>
 
 	* *.cs: Remove CLSCompliant(false) attributes.

+ 1 - 0
mcs/class/corlib/System.Collections.Generic/Dictionary.cs

@@ -41,6 +41,7 @@ using System.Runtime.Serialization;
 namespace System.Collections.Generic {
 
 	[Serializable]
+	[CLSCompliant(true)]
 	public class Dictionary<K, V> : IDictionary<K, V>,
 		//ICollection<KeyValuePair<K, V>>,
 		IEnumerable<KeyValuePair<K, V>>,

+ 1 - 1
mcs/class/corlib/System.Collections.Generic/IDictionary.cs

@@ -35,7 +35,7 @@ using System;
 using System.Runtime.InteropServices;
 
 namespace System.Collections.Generic {
-	[CLSCompliant(false)]
+	[CLSCompliant(true)]
 	[ComVisible(false)]
 	public interface IDictionary<K,V> : ICollection<KeyValuePair<K,V>> {
 		void Add (K key, V value);