gpt4 book ai didi

c# - 有什么方法可以从该属性的 getter 获取 PropertyInfo 吗?

转载 作者:太空狗 更新时间:2023-10-29 20:29:13 24 4
gpt4 key购买 nike

有什么方法可以从属性的 getter 获取属性的 PropertyInfo 吗?像这样:

public object Foo
{
get
{
PropertyInfo propertyInfoForFoo = xxx;
...
}
}

我想避免将属性名称硬编码为字符串,因为这很难维护。

我正在使用 .NET 2.0,所以我希望有一个无 linq 的解决方案。

最佳答案

MethodBase.GetCurrentMethod() 将为 get_YourPropertyName 返回 MethodInfo 对象。

PropertyInfo property = GetType()
.GetProperty(MethodBase
.GetCurrentMethod()
.Name
.Substring("get_".Length)
);

关于c# - 有什么方法可以从该属性的 getter 获取 PropertyInfo 吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3483451/

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