X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mcs%2Fclass%2Fcorlib%2FSystem.Reflection%2FCustomAttributeData.cs;h=d884714401b27c3fcad2e58eacdde330a594f1aa;hb=05d02a659fad5b68e267055612bae85fafd29b7d;hp=6c12b105b33b6845a21979e2e8f7b3498cf0693e;hpb=6733010353a6024a2b437a6cd5c5c30ae6e99218;p=mono.git diff --git a/mcs/class/corlib/System.Reflection/CustomAttributeData.cs b/mcs/class/corlib/System.Reflection/CustomAttributeData.cs index 6c12b105b33..d884714401b 100644 --- a/mcs/class/corlib/System.Reflection/CustomAttributeData.cs +++ b/mcs/class/corlib/System.Reflection/CustomAttributeData.cs @@ -119,6 +119,10 @@ namespace System.Reflection { return MonoCustomAttrs.GetCustomAttributesData (target); } + internal static IList GetCustomAttributesInternal (RuntimeType target) { + return MonoCustomAttrs.GetCustomAttributesData (target); + } + public static IList GetCustomAttributes (Module target) { return MonoCustomAttrs.GetCustomAttributesData (target); } @@ -133,6 +137,8 @@ namespace System.Reflection { public override string ToString () { + ResolveArguments (); + StringBuilder sb = new StringBuilder (); sb.Append ("[" + ctorInfo.DeclaringType.FullName + "(");