gpt4 book ai didi

c# - 条件属性如何在幕后工作

转载 作者:太空宇宙 更新时间:2023-11-03 20:09:46 26 4
gpt4 key购买 nike

我们有这段代码:

public static class MyCLass 
{
[Conditional("Debugging")]
public static void MyMethod()
{
Console.WriteLine("Example method");
}
}
.
.
.
//In debug mode: Executing Main method in debug mode
MyClass.MyMethod()

我只想知道条件属性如何改变 MyMethod 的行为,假设在 .NET 中条件属性定义为:

public class Conditional: Attribute
{
.
.
public string Mode { get; set; )
.
.
public Conditional(string Mode)
{
.
.
this.Mode = Mode;
if (Mode == "Debugging")
{
#ifdef DEBUG
//HOW THE CONDITIONAL CONSTRUCTOR COULD CHANGE THE BEHAVIOUR OF MyMethod
#endif
}
.
.
}
}

我如何访问由我的属性(即来自 MyAttribute 类)修饰的资源(方法、成员、类..)?

最佳答案

该属性告诉编译器查看标志是否已设置,如果未设置,则不会编译对该方法的任何调用,就好像代码中从未存在过该方法调用一样。您可以使用 ILSpy 等反射器工具轻松看到这一点。

所以实际上并不是属性改变了方法的行为,而是知道查找该属性并相应地改变其行为的编译器。

属性方法(在您的情况下为 MyMethod)仍处于编译状态,可以通过反射访问。

关于c# - 条件属性如何在幕后工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20782187/

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