获取列表中属性的名称

时间:2012-08-27 12:50:19

标签: c# reflection properties

示例

public class MyItems
{
    public object Test1  {get ; set; }
    public object Test2  {get ; set; }
    public object Test3  {get ; set; }
    public object Test4  {get ; set; }
    public List<object> itemList
    {
        get
        {
            return new List<object>
            {
                Test1,Test2,Test3,Test4
            }
        }
    }
}

public void LoadItems()
{
    foreach (var item in MyItems.itemList)
    {
        //get name of item here (asin,  Test1, Test2)
    }
}

**

我已经尝试过反射.. asin typeof(MyItems).GetFields()等等。但这不起作用。

如何找出“item”的名称? Test1的? Test2的?等...

3 个答案:

答案 0 :(得分:2)

 var test = typeof(MyItems).GetProperties().Select(c=>c.Name);

以上将为您提供一个可枚举的属性名称。 如果要获取列表中属性的名称,请使用:

var test = typeof(MyItems).GetProperties().Select(c=>c.Name).ToList();

编辑:

根据您的评论,您可能正在寻找:

 foreach (var item in m.itemList)
    {
        var test2 = (item.GetType()).GetProperties().Select(c => c.Name);
    }

答案 1 :(得分:1)

对象的“名称”既不是"Test1",也不是"MyItems[0]"

这些只是对象的引用,实际上是无名的。

我不知道C#中的任何技术可以给你一个对象的所有引用,给定一个对象,所以我不认为你想要的是什么,你想要的方式。

答案 2 :(得分:0)

您可以使用此代码访问属性名称(请参阅MSDN

Type myType =(typeof(MyTypeClass));
// Get the public properties.
PropertyInfo[] myPropertyInfo = myType.GetProperties(BindingFlags.Public|BindingFlags.Instance);

for(int i=0;i<myPropertyInfo.Length;i++)
{
    PropertyInfo myPropInfo = (PropertyInfo)myPropertyInfo[i];
    Console.WriteLine("The property name is {0}.", myPropInfo.Name);
    Console.WriteLine("The property type is {0}.", myPropInfo.PropertyType);
}

但是现在我不知道任何代码访问引用的名称