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:
Diffstat (limited to 'mcs/class/corlib/System/Attribute.cs')
-rw-r--r--mcs/class/corlib/System/Attribute.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/mcs/class/corlib/System/Attribute.cs b/mcs/class/corlib/System/Attribute.cs
index c82dd8406f4..48f5a0f5662 100644
--- a/mcs/class/corlib/System/Attribute.cs
+++ b/mcs/class/corlib/System/Attribute.cs
@@ -346,7 +346,7 @@ namespace System
var method = ((MethodInfo) member).GetBaseMethod ();
while (true) {
- var param = method.GetParameters () [parameter.Position];
+ var param = method.GetParametersInternal () [parameter.Position];
if (param.IsDefined (attributeType, false))
return true;
@@ -377,7 +377,7 @@ namespace System
var custom_attributes = new List<Attribute> ();
while (true) {
- var param = method.GetParameters () [parameter.Position];
+ var param = method.GetParametersInternal () [parameter.Position];
var param_attributes = (Attribute []) param.GetCustomAttributes (attributeType, false);
foreach (var param_attribute in param_attributes) {
var param_type = param_attribute.GetType ();