gpt4 book ai didi

C# Attribute.isDefined() 示例?

转载 作者:可可西里 更新时间:2023-11-01 09:08:30 25 4
gpt4 key购买 nike

有人可以给我一个使用 Attribute.isDefined() 来检查特定自定义属性是否已应用于给定类的示例吗?

我已经检查了 msdn,但只看到了应用于程序集、成员等的属性的可能性。我也愿意使用其他方法来实现相同的目的!

最佳答案

一个简单的例子:

using System;
using System.Diagnostics;

[Foo]
class Program {
static void Main(string[] args) {
var ok = Attribute.IsDefined(typeof(Program), typeof(FooAttribute));
Debug.Assert(ok);
}
}

class FooAttribute : Attribute { }

关于C# Attribute.isDefined() 示例?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3025795/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com