gpt4 book ai didi

c# - 描述一个属性

转载 作者:太空宇宙 更新时间:2023-11-03 22:19:22 25 4
gpt4 key购买 nike

如何对属性进行描述并通过 system.reflection 接收它?

最佳答案

你可以使用 custom attribute :

public class FooAttribute : Attribute
{
public string Description { get; set; }
}

public class Bar
{
[Foo(Description = "Some description")]
public string BarProperty { get; set; }
}

public class Program
{
static void Main(string[] args)
{
var foos = (FooAttribute[])typeof(Bar)
.GetProperty("BarProperty")
.GetCustomAttributes(typeof(FooAttribute), true);
Console.WriteLine(foos[0].Description);
}
}

关于c# - 描述一个属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3766813/

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