Tagged Questions

2
votes
1answer
206 views

Honouring of AttributeUsage on derived attribute types

Given the following, I would not expect the compiler to allow multiple attributes that are derived from the base attribute, given that is set to AllowMultiple=false. In fact it compiles without a ...
1
vote
1answer
68 views

Using reflection to get each instance of XmlElementAttribute for a single property

I'm trying to list the possible types that Item could contain. However I am stuck in that I can't call Item.GetType() to loop through its Attributes as this would just return the attributes of the ...