我有一个 3 属性的类。
class Issuance
{
[MyAttr]
virtual public long Code1 { get; set; }
[MyAttr]
virtual public long Code2 { get; set; }
virtual public long Code3 { get; set; }
}
我需要通过我的自定义属性([MyAttr]
)选择这个类中的一些属性。
我使用了GetProperties()
但这会返回所有属性。
var myList = new Issuance().GetType().GetProperties();
//Count of result is 3 (Code1,Code2,Code3) But count of expected is 2(Code1,Code2)
我该怎么做?