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>2003-11-14 19:20:02 +0300
committerZoltan Varga <vargaz@gmail.com>2003-11-14 19:20:02 +0300
commit936de0894a33c3d1683644b50657d1ba2b5838ba (patch)
tree75e6df840ea29c43b1f7397f8bf569c8aa141628 /mcs/class/corlib/System.Reflection/ConstructorInfo.cs
parent76ba6097bcfa2aa25817ce3fae23b4a261948b7a (diff)
2003-11-14 Zoltan Varga <vargaz@freemail.hu>
* AssemblyNameFlags.cs MethodAttributes.cs: Add new enumerated values from NET 1.1. * *.cs: Add missing attributes. svn path=/trunk/mcs/; revision=19997
Diffstat (limited to 'mcs/class/corlib/System.Reflection/ConstructorInfo.cs')
-rw-r--r--mcs/class/corlib/System.Reflection/ConstructorInfo.cs3
1 files changed, 3 insertions, 0 deletions
diff --git a/mcs/class/corlib/System.Reflection/ConstructorInfo.cs b/mcs/class/corlib/System.Reflection/ConstructorInfo.cs
index 936f50ef8df..d9790690672 100644
--- a/mcs/class/corlib/System.Reflection/ConstructorInfo.cs
+++ b/mcs/class/corlib/System.Reflection/ConstructorInfo.cs
@@ -10,9 +10,12 @@
using System;
using System.Reflection;
using System.Globalization;
+using System.Runtime.InteropServices;
namespace System.Reflection {
+
[Serializable]
+ [ClassInterface(ClassInterfaceType.AutoDual)]
public abstract class ConstructorInfo : MethodBase {
public static readonly string ConstructorName = ".ctor";
public static readonly string TypeConstructorName = ".cctor";