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>2009-11-03 04:20:56 +0300
committerMiguel de Icaza <miguel@gnome.org>2009-11-03 04:20:56 +0300
commit3400094d1a0c671626e7427732234647e6364ae6 (patch)
treefb0ff2ded91f46e5c23171b06f9c80ab7f772bdd /mcs/class/corlib/System.Reflection/ConstructorInfo.cs
parent7f825c2dbe5d165a8a6d3cdecedf102a63503db0 (diff)
System.Reflection's turn to be de-ifdefified
svn path=/trunk/mcs/; revision=145240
Diffstat (limited to 'mcs/class/corlib/System.Reflection/ConstructorInfo.cs')
-rw-r--r--mcs/class/corlib/System.Reflection/ConstructorInfo.cs15
1 files changed, 0 insertions, 15 deletions
diff --git a/mcs/class/corlib/System.Reflection/ConstructorInfo.cs b/mcs/class/corlib/System.Reflection/ConstructorInfo.cs
index 2c3c714584d..dd4e43f4f39 100644
--- a/mcs/class/corlib/System.Reflection/ConstructorInfo.cs
+++ b/mcs/class/corlib/System.Reflection/ConstructorInfo.cs
@@ -33,40 +33,25 @@ using System.Runtime.InteropServices;
namespace System.Reflection {
-#if NET_2_0
[ComVisible (true)]
[ComDefaultInterfaceAttribute (typeof (_ConstructorInfo))]
-#endif
[Serializable]
[ClassInterface(ClassInterfaceType.None)]
public abstract class ConstructorInfo : MethodBase, _ConstructorInfo {
-#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() {
}
-#if NET_2_0
[ComVisible (true)]
-#endif
public override MemberTypes MemberType {
get {return MemberTypes.Constructor;}
}
-#if ONLY_1_1
- public new Type GetType ()
- {
- return base.GetType ();
- }
-#endif
-
[DebuggerStepThrough]
[DebuggerHidden]
public object Invoke (object[] parameters)