New tests.
[mono.git] / mcs / class / corlib / System.Reflection / Assembly.cs
index bafe2ce2873a464e32bf07072f9527af33dd0472..d6068ba8cd30ad7165ee1c4e7d4d7256e7d086bd 100644 (file)
@@ -871,7 +871,7 @@ namespace System.Reflection {
 #if NET_4_0
                static Exception CreateNIE ()
                {
-                       return new NotSupportedException ("Derived classes must implement it");
+                       return new NotImplementedException ("Derived classes must implement it");
                }
 
                public virtual Type GetType (string name, bool throwOnError, bool ignoreCase)
@@ -918,6 +918,10 @@ namespace System.Reflection {
                        get { throw CreateNIE (); }
                }
 
+               public virtual bool IsDynamic {
+                       get { return false; }
+               }
+
                public override int GetHashCode ()
                {
                        return base.GetHashCode ();