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:29:46 +0300
committerJoao Matos <joao@tritao.eu>2017-08-18 15:30:09 +0300
commitc1d0dec3cfcf092f9b67a9e58d71acb39833dfb4 (patch)
treeb267ca48b2a143ddab6185f2b3fdecbda904ba27
parent847e05fced5c9a41ff0f24f1f9d40d5a8a5772c1 (diff)
Make MethodBase.ParameterCount public as we need to use it in Embeddinator.
-rw-r--r--reflect/MethodBase.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/reflect/MethodBase.cs b/reflect/MethodBase.cs
index f3810ec2..a54950a1 100644
--- a/reflect/MethodBase.cs
+++ b/reflect/MethodBase.cs
@@ -33,7 +33,7 @@ namespace IKVM.Reflection
}
internal abstract MethodSignature MethodSignature { get; }
- internal abstract int ParameterCount { get; }
+ public abstract int ParameterCount { get; }
public abstract ParameterInfo[] GetParameters();
public abstract MethodAttributes Attributes { get; }
public abstract MethodImplAttributes GetMethodImplementationFlags();