* *.cs: Add CLSCompliant(true) where missing. svn path=/trunk/mcs/; revision=44140
@@ -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.
@@ -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>>,
@@ -35,7 +35,7 @@ using System;
using System.Runtime.InteropServices;
- [CLSCompliant(false)]
[ComVisible(false)]
public interface IDictionary<K,V> : ICollection<KeyValuePair<K,V>> {
void Add (K key, V value);