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:
authorZoltan Varga <vargaz@gmail.com>2005-06-09 14:38:09 +0400
committerZoltan Varga <vargaz@gmail.com>2005-06-09 14:38:09 +0400
commitfae5147e4c1b4ded64e5b079c0e3a6d7e4f3a8c3 (patch)
treea76024573dc2e6f3271b2560e724fc028bf02f51 /mcs/class/corlib/System.Reflection/ConstructorInfo.cs
parent7f4ccdb257d8ca6c6d486ec40709d21a24cec529 (diff)
2005-06-09 Zoltan Varga <vargaz@freemail.hu>
* *.cs: Updates for net 2.0 beta 2. svn path=/trunk/mcs/; revision=45685
Diffstat (limited to 'mcs/class/corlib/System.Reflection/ConstructorInfo.cs')
-rw-r--r--mcs/class/corlib/System.Reflection/ConstructorInfo.cs7
1 files changed, 7 insertions, 0 deletions
diff --git a/mcs/class/corlib/System.Reflection/ConstructorInfo.cs b/mcs/class/corlib/System.Reflection/ConstructorInfo.cs
index 77b340b0540..b529db75a43 100644
--- a/mcs/class/corlib/System.Reflection/ConstructorInfo.cs
+++ b/mcs/class/corlib/System.Reflection/ConstructorInfo.cs
@@ -40,11 +40,18 @@ namespace System.Reflection {
#if NET_2_0
[ComVisible (true)]
+ [ComDefaultInterfaceAttribute (typeof (_ConstructorInfo))]
#endif
[Serializable]
[ClassInterface(ClassInterfaceType.None)]
public abstract class ConstructorInfo : MethodBase {
+#if NET_2_0
+ [ComVisible (true)]
+#endif
public static readonly string ConstructorName = ".ctor";
+#if NET_2_0
+ [ComVisible (true)]
+#endif
public static readonly string TypeConstructorName = ".cctor";
protected ConstructorInfo() {