summaryrefslogtreecommitdiff
path: root/src/mscorlib/shared/System/Type.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/mscorlib/shared/System/Type.cs')
-rw-r--r--src/mscorlib/shared/System/Type.cs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mscorlib/shared/System/Type.cs b/src/mscorlib/shared/System/Type.cs
index 7749c17414..2ba58918a0 100644
--- a/src/mscorlib/shared/System/Type.cs
+++ b/src/mscorlib/shared/System/Type.cs
@@ -32,6 +32,7 @@ namespace System
public override Type ReflectedType => null;
public abstract Type UnderlyingSystemType { get; }
+ public virtual bool IsTypeDefinition { get { throw NotImplemented.ByDesign; } }
public bool IsArray => IsArrayImpl();
protected abstract bool IsArrayImpl();
public bool IsByRef => IsByRefImpl();