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:
authorjfrijters <jfrijters>2011-01-26 09:59:57 +0300
committerjfrijters <jfrijters>2011-01-26 09:59:57 +0300
commitc16a29c301642e601491d6564e1a00bbec03958c (patch)
treeec7de0784136d2334ed7e3f6051aecbb9286c6ef /reflect/Type.cs
parentd4b02c9bcfb394d9d8d1990bc13d9e01d9bb8ec8 (diff)
Added support for resolving methods in missing types (primarily to enable CustomAttributeData.Constructor to work for missing attribute types).
Diffstat (limited to 'reflect/Type.cs')
-rw-r--r--reflect/Type.cs7
1 files changed, 1 insertions, 6 deletions
diff --git a/reflect/Type.cs b/reflect/Type.cs
index 444d14d5..e39a244a 100644
--- a/reflect/Type.cs
+++ b/reflect/Type.cs
@@ -1136,11 +1136,6 @@ namespace IKVM.Reflection
get { return this.DeclaringType != null; }
}
- public bool __IsMissing
- {
- get { return this is MissingType; }
- }
-
public virtual bool __ContainsMissingType
{
get
@@ -1525,7 +1520,7 @@ namespace IKVM.Reflection
}
}
- internal MethodBase FindMethod(string name, MethodSignature signature)
+ internal virtual MethodBase FindMethod(string name, MethodSignature signature)
{
foreach (MethodBase method in __GetDeclaredMethods())
{