X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mcs%2Fclass%2Fcorlib%2FSystem.Reflection%2FPropertyInfo.cs;h=b979cc6850c8850f2150615c9719260908246a35;hb=6b2b23c753525c5c5c2b391e9adc36c650825e1f;hp=09b7632ecb26b301176d1b038cf22b4c88f4fc52;hpb=5d9434fcb3acc1ed7d3d30603faae797d672fe65;p=mono.git diff --git a/mcs/class/corlib/System.Reflection/PropertyInfo.cs b/mcs/class/corlib/System.Reflection/PropertyInfo.cs index 09b7632ecb2..b979cc6850c 100644 --- a/mcs/class/corlib/System.Reflection/PropertyInfo.cs +++ b/mcs/class/corlib/System.Reflection/PropertyInfo.cs @@ -30,6 +30,7 @@ using System.Diagnostics; using System.Globalization; using System.Runtime.InteropServices; +using System.Runtime.CompilerServices; namespace System.Reflection { @@ -104,22 +105,21 @@ namespace System.Reflection { public abstract void SetValue (object obj, object value, BindingFlags invokeAttr, Binder binder, object[] index, CultureInfo culture); #if NET_2_0 || BOOTSTRAP_NET_2_0 - [MonoTODO] + public virtual Type[] GetOptionalCustomModifiers () { - throw new NotImplementedException (); + return Type.EmptyTypes; } - [MonoTODO] public virtual Type[] GetRequiredCustomModifiers () { - throw new NotImplementedException (); + return Type.EmptyTypes; } - [MonoTODO] + [MonoTODO("Not implemented")] public virtual object GetConstantValue () { throw new NotImplementedException (); } - [MonoTODO] + [MonoTODO("Not implemented")] public virtual object GetRawConstantValue() { throw new NotImplementedException (); }