0
属性のすべてのリストを反復せずにカスタム属性値を読み取ることは可能ですか?私は属性値attributeData.IncludeResult
を読むために以下のコードを使用しますが、私はforeach
と繰り返しを使用せずに簡単にもっと最適な方法で行うべきだと思います。反復なしで属性を取得
foreach (var customAttributeData in
propertyInfo.GetCustomAttributes(typeof(WebClientAttribute), false))
{
var attributeData = (WebClientAttribute)customAttributeData;
myData = attributeData.IncludeResult
}