X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mcs%2Fclass%2Fcorlib%2FSystem.Reflection%2FTypeDelegator.cs;h=8beffb64cd216b1469aabef6db6e0864f5a16685;hb=c1b43669320f96e4a2a482d993b7b36bb5e59496;hp=01b4d58841d2c7ca2899cf7f8eec8747d22bb0bc;hpb=e946a6cdebde729e1c03ec374184254ab38da184;p=mono.git diff --git a/mcs/class/corlib/System.Reflection/TypeDelegator.cs b/mcs/class/corlib/System.Reflection/TypeDelegator.cs index 01b4d58841d..8beffb64cd2 100644 --- a/mcs/class/corlib/System.Reflection/TypeDelegator.cs +++ b/mcs/class/corlib/System.Reflection/TypeDelegator.cs @@ -37,11 +37,7 @@ namespace System.Reflection { [ComVisible (true)] [Serializable] public class TypeDelegator : -#if NET_4_5 TypeInfo, IReflectableType -#else - Type -#endif { protected Type typeImpl; @@ -260,7 +256,6 @@ namespace System.Reflection { } } -#if NET_4_5 public override bool IsConstructedGenericType { get { return typeImpl.IsConstructedGenericType; } } @@ -272,7 +267,6 @@ namespace System.Reflection { return IsAssignableFrom (typeInfo.AsType ()); } -#endif } }