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:
authorMiguel de Icaza <miguel@gnome.org>2005-09-30 06:15:04 +0400
committerMiguel de Icaza <miguel@gnome.org>2005-09-30 06:15:04 +0400
commit5370ce3394411d2824f1b2ba4ea573794f60f5f7 (patch)
tree8a275e9e21fd475fd0d88a5d526715d5bbe58659 /mcs/class/corlib/System.Collections/IEnumerable.cs
parent7816be14caf1fc38babb861e46ea23f672aff847 (diff)
2005-09-29 Miguel de Icaza <miguel@novell.com>
* Add ComVisible(true) to all the classes that needed it. * Removed documentation from DictionaryBase.cs and moved it to Monodoc. * ArrayList.cs: Fixed signature for constructor, parameter names are normative. * CollectionBase.cs: Add a couple of missing methods. svn path=/trunk/mcs/; revision=51018
Diffstat (limited to 'mcs/class/corlib/System.Collections/IEnumerable.cs')
-rw-r--r--mcs/class/corlib/System.Collections/IEnumerable.cs4
1 files changed, 4 insertions, 0 deletions
diff --git a/mcs/class/corlib/System.Collections/IEnumerable.cs b/mcs/class/corlib/System.Collections/IEnumerable.cs
index 9c0f231d84e..b24cb3f6766 100644
--- a/mcs/class/corlib/System.Collections/IEnumerable.cs
+++ b/mcs/class/corlib/System.Collections/IEnumerable.cs
@@ -35,6 +35,10 @@ using System;
using System.Runtime.InteropServices;
namespace System.Collections {
+
+#if NET_2_0
+ [ComVisible(true)]
+#endif
[Guid("496B0ABE-CDEE-11d3-88E8-00902754C43A")]
public interface IEnumerable {
[DispId(-4)]