首页 >后端开发 >C++ >如何在 C# 中动态检索类属性?

如何在 C# 中动态检索类属性?

Linda Hamilton
Linda Hamilton原创
2025-01-12 08:28:11121浏览

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中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn