本文介绍了读取方法属性的值的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我需要能够从我的方法中读取属性的值,我该怎么做?
I need to be able to read the value of my attribute from within my Method, how can I do that?
[MyAttribute("Hello World")]
public void MyMethod()
{
// Need to read the MyAttribute attribute and get its value
}
推荐答案
您需要调用 MethodBase
对象上的GetCustomAttributes
函数.
获取MethodBase
对象的最简单方法是调用 MethodBase.GetCurrentMethod
. (请注意,您应该添加[MethodImpl(MethodImplOptions.NoInlining)]
)
You need to call the GetCustomAttributes
function on a MethodBase
object.
The simplest way to get the MethodBase
object is to call MethodBase.GetCurrentMethod
. (Note that you should add [MethodImpl(MethodImplOptions.NoInlining)]
)
例如:
MethodBase method = MethodBase.GetCurrentMethod();
MyAttribute attr = (MyAttribute)method.GetCustomAttributes(typeof(MyAttribute), true)[0] ;
string value = attr.Value; //Assumes that MyAttribute has a property called Value
您还可以手动获取MethodBase
,如下所示:(这样会更快)
You can also get the MethodBase
manually, like this: (This will be faster)
MethodBase method = typeof(MyClass).GetMethod("MyMethod");
这篇关于读取方法属性的值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!