本文介紹一種通用的方法,用於動態存取和提取類別的屬性值。
定義一個接受型別參數的通用方法:
<code class="language-csharp">public string GetDomainName<T>()</code>
方法內部:
使用 typeof(T).GetCustomAttributes
檢索自訂屬性:
<code class="language-csharp"> var dnAttribute = typeof(T).GetCustomAttributes( typeof(DomainNameAttribute), true ).FirstOrDefault() as DomainNameAttribute;</code>
如果屬性存在,則傳回其值:
<code class="language-csharp"> if (dnAttribute != null) { return dnAttribute.Name; }</code>
否則,回傳 null:
<code class="language-csharp"> return null;</code>
為了更廣泛的適用性,將該方法泛化以處理任何屬性:
<code class="language-csharp">public static class AttributeExtensions { public static TValue GetAttributeValue<TAttribute, TValue>( this Type type, Func<TAttribute, TValue> valueSelector) where TAttribute : Attribute }</code>
擴充方法內部:
擷取自訂屬性:
<code class="language-csharp"> var att = type.GetCustomAttributes( typeof(TAttribute), true ).FirstOrDefault() as TAttribute;</code>
如果屬性存在,則使用提供的 valueSelector
來提取所需的值:
<code class="language-csharp"> if (att != null) { return valueSelector(att); }</code>
否則,傳回該類型的預設值:
<code class="language-csharp"> return default(TValue);</code>
MyClass
的 DomainName
屬性:<code class="language-csharp">string name = typeof(MyClass).GetDomainName<MyClass>();</code>
MyClass
的任何屬性值:<code class="language-csharp">string name = typeof(MyClass) .GetAttributeValue<DomainNameAttribute, string>((DomainNameAttribute dna) => dna.Name);</code>
以上是如何在運行時動態檢索類別的屬性值?的詳細內容。更多資訊請關注PHP中文網其他相關文章!