如何获取字段的自定义属性值

本文关键字:字段 自定义属性 获取 何获取 | 更新日期: 2023-09-27 18:27:22

我正在使用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方法中的自定义属性值。

我该如何做到这一点?

如何获取字段的自定义属性值

您可以使用反射来完成此操作。

using System;
using System.Reflection;
[AttributeUsage(AttributeTargets.Property)]
public class FieldFixedLengthAttribute : Attribute
{
    public int Length { get; set; }
}
public class Person
{
    [FieldFixedLength(Length = 2)]
    public string fileprefix { get; set; }
    [FieldFixedLength(Length = 12)]
    public string customerName { get; set; }
}
public class Test
{
    public static void Main()
    {
        foreach (var prop in typeof(Person).GetProperties())
        {
            var attrs = (FieldFixedLengthAttribute[])prop.GetCustomAttributes
                (typeof(FieldFixedLengthAttribute), false);
            foreach (var attr in attrs)
            {
                Console.WriteLine("{0}: {1}", prop.Name, attr.Length);
            }
        }
    }
}

有关更多信息,请参阅此

唯一的方法是使用反射:

var fieldInfo = typeof(MyFileLayout).GetField("customerName", System.Reflection.BindingFlags.NonPublic | System.Reflection.BindingFlags.Instance)
var length = ((FieldFixedLengthAttribute)Attribute.GetCustomAttribute(fieldInfo, typeof(FieldFixedLengthAttribute))).Length;

我已经用以下FieldFixedLengthAttribute实现对其进行了测试:

public class FieldFixedLengthAttribute : Attribute
{
    public int Length { get; private set; }
    public FieldFixedLengthAttribute(int length)
    {
        Length = length;
    }
}

您必须调整代码以反映属性类的属性。