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.Reflection.Emit/PropertyOnTypeBuilderInst.cs')
-rw-r--r--mcs/class/corlib/System.Reflection.Emit/PropertyOnTypeBuilderInst.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/mcs/class/corlib/System.Reflection.Emit/PropertyOnTypeBuilderInst.cs b/mcs/class/corlib/System.Reflection.Emit/PropertyOnTypeBuilderInst.cs
index 578cf06a5d1..1035f494c86 100644
--- a/mcs/class/corlib/System.Reflection.Emit/PropertyOnTypeBuilderInst.cs
+++ b/mcs/class/corlib/System.Reflection.Emit/PropertyOnTypeBuilderInst.cs
@@ -115,7 +115,8 @@ namespace System.Reflection.Emit
MethodInfo method = GetGetMethod (true);
if (method != null)
return method.GetParameters ();
- return new ParameterInfo [0];
+
+ return EmptyArray<ParameterInfo>.Value;
}
public override MethodInfo GetSetMethod (bool nonPublic)