Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/ikvm-fork.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoao Matos <joao@tritao.eu>2017-08-18 15:34:57 +0300
committerJoao Matos <joao@tritao.eu>2017-08-18 15:34:57 +0300
commitf9c1e2fec05127bb840488482b6aff1a0a942f3c (patch)
tree2911ab8e11d50cc9d1c40e0b62f87c8a11bc0320
parentc1d0dec3cfcf092f9b67a9e58d71acb39833dfb4 (diff)
Revert "Make MethodBase.ParameterCount public as we need to use it in Embeddinator."
This reverts commit c1d0dec3cfcf092f9b67a9e58d71acb39833dfb4.
-rw-r--r--reflect/MethodBase.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/reflect/MethodBase.cs b/reflect/MethodBase.cs
index a54950a1..f3810ec2 100644
--- a/reflect/MethodBase.cs
+++ b/reflect/MethodBase.cs
@@ -33,7 +33,7 @@ namespace IKVM.Reflection
}
internal abstract MethodSignature MethodSignature { get; }
- public abstract int ParameterCount { get; }
+ internal abstract int ParameterCount { get; }
public abstract ParameterInfo[] GetParameters();
public abstract MethodAttributes Attributes { get; }
public abstract MethodImplAttributes GetMethodImplementationFlags();