From 5a3c891427a9899c0d774ce85a680e0dc3a0b64a Mon Sep 17 00:00:00 2001 From: =?utf8?q?Michal=20Strehovsk=C3=BD?= Date: Wed, 5 Apr 2017 11:25:20 -0700 Subject: [PATCH] Merge pull request dotnet/corert#3216 from dotnet/nmirror Merge nmirror to master Signed-off-by: dotnet-bot --- src/mscorlib/shared/System/Type.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/mscorlib/shared/System/Type.cs b/src/mscorlib/shared/System/Type.cs index fa0a7b9..7749c17 100644 --- a/src/mscorlib/shared/System/Type.cs +++ b/src/mscorlib/shared/System/Type.cs @@ -44,6 +44,7 @@ namespace System public virtual bool IsGenericTypeDefinition => false; public virtual bool IsSZArray { get { throw NotImplemented.ByDesign; } } + public virtual bool IsVariableBoundArray => IsArray && !IsSZArray; public bool HasElementType => HasElementTypeImpl(); protected abstract bool HasElementTypeImpl(); -- 2.7.4