gpt4 book ai didi

c# - 如何获取字段的自定义属性值?

转载 作者:行者123 更新时间:2023-11-30 13:47:15 26 4
gpt4 key购买 nike

<分区>

我正在使用 FileHelpers 写出固定长度的文件。

 public class MyFileLayout
{

[FieldFixedLength(2)]
private string prefix;

[FieldFixedLength(12)]
private string customerName;

public string CustomerName
{
set
{
this.customerName= value;
**Here I require to get the customerName's FieldFixedLength attribute value**

}
}
}

如上所示,我想在属性的 set 方法中访问自定义属性值。

我如何实现这一目标?

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