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:
authorSebastien Pouliot <sebastien@ximian.com>2005-06-15 14:45:00 +0400
committerSebastien Pouliot <sebastien@ximian.com>2005-06-15 14:45:00 +0400
commit571bd38886c7d572a8632377c6cbf9c9b1915db6 (patch)
tree53b0d522da4eac9189beb9f7a38703fc691d0802 /mcs/class/corlib/System.Reflection/ConstructorInfo.cs
parentbcc77df3a95eb4911bca07452507545b4be8da6f (diff)
2005-06-15 Sebastien Pouliot <sebastien@ximian.com>
* Assembly.cs, AssemblyName.cs, ConstructorInfo.cs, EventInfo.cs, FieldInfo.cs, MemberInfo.cs, MethodBase.cs, MethodInfo.cs, Module.cs, ParameterInfo.cs, PropertyInfo.cs: Added some missing interfaces and attributes that were added in 1.1 SP1 or 2.0 beta2. svn path=/trunk/mcs/; revision=46031
Diffstat (limited to 'mcs/class/corlib/System.Reflection/ConstructorInfo.cs')
-rw-r--r--mcs/class/corlib/System.Reflection/ConstructorInfo.cs10
1 files changed, 3 insertions, 7 deletions
diff --git a/mcs/class/corlib/System.Reflection/ConstructorInfo.cs b/mcs/class/corlib/System.Reflection/ConstructorInfo.cs
index b529db75a43..b0054509746 100644
--- a/mcs/class/corlib/System.Reflection/ConstructorInfo.cs
+++ b/mcs/class/corlib/System.Reflection/ConstructorInfo.cs
@@ -5,10 +5,7 @@
// Paolo Molaro (lupus@ximian.com)
//
// (C) 2001 Ximian, Inc. http://www.ximian.com
-//
-
-//
-// Copyright (C) 2004 Novell, Inc (http://www.novell.com)
+// Copyright (C) 2004-2005 Novell, Inc (http://www.novell.com)
//
// Permission is hereby granted, free of charge, to any person obtaining
// a copy of this software and associated documentation files (the
@@ -30,9 +27,7 @@
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//
-using System;
using System.Diagnostics;
-using System.Reflection;
using System.Globalization;
using System.Runtime.InteropServices;
@@ -44,7 +39,8 @@ namespace System.Reflection {
#endif
[Serializable]
[ClassInterface(ClassInterfaceType.None)]
- public abstract class ConstructorInfo : MethodBase {
+ public abstract class ConstructorInfo : MethodBase, _ConstructorInfo {
+
#if NET_2_0
[ComVisible (true)]
#endif