首頁 > 後端開發 > C++ > 如何在運行時動態讀取C#中的屬性值?

如何在運行時動態讀取C#中的屬性值?

Patricia Arquette
發布: 2025-01-12 06:01:43
原創
328 人瀏覽過

How to Dynamically Read Attribute Values in C# at Runtime?

在運行時動態讀取屬性值

在軟體開發中,您經常會遇到需要動態存取與類別或物件關聯的屬性的情況。這種能力對於各種場景至關重要,例如反射、配置檢索和動態程式碼生成。

本文探討如何在C#中實現動態屬性檢索,示範了兩種不同的方法:

1. 用於特定屬性類型的自訂方法:

要讀取特定屬性類型的屬性值,例如DomainName屬性,您可以定義以下自訂方法:

<code class="language-csharp">public string GetDomainName<T>()
{
    var dnAttribute = typeof(T).GetCustomAttributes(
        typeof(DomainNameAttribute), true
    ).FirstOrDefault() as DomainNameAttribute;
    if (dnAttribute != null)
    {
        return dnAttribute.Name;
    }
    return null;
}</code>
登入後複製

2. 用於任何屬性類型的泛型擴充方法:

為了使屬性檢索過程通用化並支援任何屬性類型,您可以建立下列泛型擴充方法:

<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>
登入後複製

使用方法:

這兩種方法都允許您在運行時取得DomainName屬性值,如下所示:

<code class="language-csharp">// 使用自定义方法
string domainNameValue = GetDomainName<MyClass>();

// 使用扩展方法
string name = typeof(MyClass)
    .GetAttributeValue((DomainNameAttribute dna) => dna.Name);</code>
登入後複製

以上是如何在運行時動態讀取C#中的屬性值?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

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