[threadpool] Added dynamic concurrent queue implementation
[mono.git] / mcs / class / IKVM.Reflection / ConstructorInfo.cs
index 69e2b4df6fae1ec97abd24cd57ed8295d4a2b658..6e8bff31b4b9cb255bd500fb192e2b15221cbf33 100644 (file)
@@ -28,6 +28,11 @@ namespace IKVM.Reflection
 {
        public abstract class ConstructorInfo : MethodBase
        {
+               // prevent external subclasses
+               internal ConstructorInfo()
+               {
+               }
+
                public static readonly string ConstructorName = ".ctor";
                public static readonly string TypeConstructorName = ".cctor";
 
@@ -196,6 +201,11 @@ namespace IKVM.Reflection
                        get { return method.MetadataToken; }
                }
 
+               public override bool __IsMissing
+               {
+                       get { return method.__IsMissing; }
+               }
+
                internal override MethodInfo GetMethodInfo()
                {
                        return method;