首頁 > 後端開發 > C++ > 如何在 C# 中動態檢索類別屬性?

如何在 C# 中動態檢索類別屬性?

Linda Hamilton
發布: 2025-01-12 08:28:11
原創
157 人瀏覽過

How Can I Dynamically Retrieve Class Attributes in C#?

動態取得類別屬性

物件導向程式設計中,屬性是附加到類別的元數據,提供了超出程式碼本身的額外資訊。如果需要在運行時動態讀取屬性,以下是如何實現的。

領域屬性範例

考慮以下包含DomainName屬性的程式碼片段:

<code class="language-csharp">[DomainName("MyTable")]
public class MyClass : DomainBase
{ }</code>
登入後複製

用於屬性讀取的泛型方法

我們的目標是建立一個泛型方法,讀取給定類別上的DomainName屬性並傳回其值:

<code class="language-csharp">string GetDomainName<T>()
{
    var dnAttribute = typeof(T).GetCustomAttributes(
        typeof(DomainNameAttribute), true
    ).FirstOrDefault() as DomainNameAttribute;

    if (dnAttribute != null)
    {
        return dnAttribute.Name;
    }
    return null;
}</code>
登入後複製

此方法可以這樣使用:

<code class="language-csharp">string domainNameValue = GetDomainName<MyClass>(); // 返回 "MyTable"</code>
登入後複製

通用屬性讀取

使用AttributeExtensions類,可以將屬性讀取功能泛化,使其能夠與任何屬性類型一起工作:

<code class="language-csharp">public static class AttributeExtensions
{
    public static TValue GetAttributeValue<TAttribute, TValue>(
        this Type type, 
        Func<TAttribute, TValue> valueSelector) 
        where TAttribute : Attribute
    {
        var att = type.GetCustomAttributes(
            typeof(TAttribute), true
        ).FirstOrDefault() as TAttribute;

        if (att != null)
        {
            return valueSelector(att);
        }
        return default(TValue);
    }
}</code>
登入後複製

使用方法:

<code class="language-csharp">string name = typeof(MyClass)
    .GetAttributeValue((DomainNameAttribute dna) => dna.Name);</code>
登入後複製

以上是如何在 C# 中動態檢索類別屬性?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板