From: Michal Strehovský Date: Wed, 5 Apr 2017 18:25:20 +0000 (-0700) Subject: Merge pull request dotnet/corert#3216 from dotnet/nmirror X-Git-Tag: accepted/tizen/base/20180629.140029~1542 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=5a3c891427a9899c0d774ce85a680e0dc3a0b64a;p=platform%2Fupstream%2Fcoreclr.git Merge pull request dotnet/corert#3216 from dotnet/nmirror Merge nmirror to master Signed-off-by: dotnet-bot --- 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();