我正在使用 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 方法中的自定义属性值。
我如何实现这一目标?