From: Michal Strehovský Date: Fri, 28 Jul 2017 16:41:38 +0000 (-0700) Subject: Merge pull request dotnet/corert#4242 from dotnet/nmirror X-Git-Tag: accepted/tizen/base/20180629.140029~1083^2~39 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=8c7d6b3d2b6955d05e7289a09755a25d252273b1;p=platform%2Fupstream%2Fcoreclr.git Merge pull request dotnet/corert#4242 from dotnet/nmirror Merge master to nmirror Signed-off-by: dotnet-bot --- diff --git a/src/mscorlib/shared/System/Type.cs b/src/mscorlib/shared/System/Type.cs index 2ba5891..5481a78 100644 --- a/src/mscorlib/shared/System/Type.cs +++ b/src/mscorlib/shared/System/Type.cs @@ -47,6 +47,8 @@ namespace System public virtual bool IsSZArray { get { throw NotImplemented.ByDesign; } } public virtual bool IsVariableBoundArray => IsArray && !IsSZArray; + public virtual bool IsByRefLike => throw new NotSupportedException(SR.NotSupported_SubclassOverride); + public bool HasElementType => HasElementTypeImpl(); protected abstract bool HasElementTypeImpl(); public abstract Type GetElementType();