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>2010-02-25 13:46:29 +0300
committerjfrijters <jfrijters>2010-02-25 13:46:29 +0300
commite3275b391700f26c68c0e55cbeafe0be164bf050 (patch)
tree1179bd361487d264a52b393df25eaa38d0fed0f0 /reflect/PropertyInfo.cs
parent0d65f18b33fdcbc0e37afb632b3681360c088d7a (diff)
Added workaround for the fact that Mono doesn't set the HasThis flag on property signatures.
Diffstat (limited to 'reflect/PropertyInfo.cs')
-rw-r--r--reflect/PropertyInfo.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/reflect/PropertyInfo.cs b/reflect/PropertyInfo.cs
index 44eb324b..72297006 100644
--- a/reflect/PropertyInfo.cs
+++ b/reflect/PropertyInfo.cs
@@ -151,7 +151,7 @@ namespace IKVM.Reflection
return GetAccessors(false);
}
- internal bool IsStatic
+ internal virtual bool IsStatic
{
get { return !this.PropertySignature.HasThis; }
}