我一直在寻找一个如何从自定义属性代码中获取属性值的示例。
仅用于说明的示例:我们有一个只有name属性的简单书类。 name属性具有自定义属性:
public class Book
{
[CustomAttribute1]
property Name { get; set; }
}
在自定义属性的代码中,我想获取已装饰属性的属性的值:
public class CustomAttribute1: Attribute
{
public CustomAttribute1()
{
//I would like to be able to get the book's name value here to print to the console:
// Thoughts?
Console.WriteLine(this.Value)
}
}
当然," this.Value"不起作用。有什么想法吗?
答案 0 :(得分:1)
好的,我明白了。这仅适用于.Net 4.5及更高版本。
在System.Runtime.CompilerServices库中,有一个CallerMemberNameAttribute类可用。要获取调用类的名称,有一个CallerFilePathAttribute类,它返回调用类的完整路径,以便以后与Reflection一起使用。两者使用如下:
public class CustomAttribute1: Attribute
{
public CustomAttribute1([CallerMemberName] string propertyName = null, [CallerFilePath] string filePath = null)
{
//Returns "Name"
Console.WriteLine(propertyName);
//Returns full path of the calling class
Console.WriteLine(filePath);
}
}
我希望你觉得这对你的工作很有帮助。