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:
authorGert Driesen <drieseng@users.sourceforge.net>2004-06-01 21:48:31 +0400
committerGert Driesen <drieseng@users.sourceforge.net>2004-06-01 21:48:31 +0400
commit6f4501e5105e848906abc6615b964428d3559568 (patch)
treebc55e714cc4c19ff24709fefcfad08b0c719b1e5 /mcs/class/corlib/System.Reflection/ConstructorInfo.cs
parent33f3a435b511cf1ff996b99ce366da5d65597f3a (diff)
* Assembly.cs: added missing ComVisible attribute on
ImageRuntimeVersion property * ConstructorInfo.cs: added missing attributes on Invoke * EventInfo.cs: added missing attributes * FieldInfo.cs: added missing attributes * MethodBase.cs: added missing attributes * PropertyInfo.cs: added missing attributes svn path=/trunk/mcs/; revision=28642
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 d9790690672..acbb776e47f 100644
--- a/mcs/class/corlib/System.Reflection/ConstructorInfo.cs
+++ b/mcs/class/corlib/System.Reflection/ConstructorInfo.cs
@@ -8,6 +8,7 @@
//
using System;
+using System.Diagnostics;
using System.Reflection;
using System.Globalization;
using System.Runtime.InteropServices;
@@ -27,6 +28,8 @@ namespace System.Reflection {
get {return MemberTypes.Constructor;}
}
+ [DebuggerStepThrough]
+ [DebuggerHidden]
public object Invoke (object[] parameters)
{
if (parameters == null)