C#反射索引属性

时间:2008-11-14 20:49:29

标签: c# reflection clone

我正在使用反射编写Clone方法。如何使用反射检测属性是索引属性?例如:

public string[] Items
{
   get;
   set;
}

到目前为止我的方法:

public static T Clone<T>(T from, List<string> propertiesToIgnore) where T : new()
{
    T to = new T();

    Type myType = from.GetType();

    PropertyInfo[] myProperties = myType.GetProperties();

    for (int i = 0; i < myProperties.Length; i++)
    {
        if (myProperties[i].CanWrite && !propertiesToIgnore.Contains(myProperties[i].Name))
        {
            myProperties[i].SetValue(to,myProperties[i].GetValue(from,null),null);
        }
    }

    return to;
}

6 个答案:

答案 0 :(得分:45)

if (propertyInfo.GetIndexParameters().Length > 0)
{
    // Property is an indexer
}

答案 1 :(得分:20)

抱歉,但是

public string[] Items { get; set; }

不是索引属性,它只是一个数组类型! 但是以下是:

public string this[int index]
{
    get { ... }
    set { ... }
}

答案 2 :(得分:9)

你想要的是GetIndexParameters()方法。如果它返回的数组有超过0个项目,那意味着它是一个索引属性。

有关详细信息,请参阅the MSDN documentation

答案 3 :(得分:2)

如果您调用property.GetValue(obj,null),并且属性IS已编入索引,那么您将获得参数计数不匹配异常。最好检查属性是否使用GetIndexParameters()编制索引,然后决定要执行的操作。

答案 4 :(得分:1)

以下是一些对我有用的代码:

foreach (PropertyInfo property in obj.GetType().GetProperties())
{
  object value = property.GetValue(obj, null);
  if (value is object[])
  {
    ....
  }
}

P.S。 .GetIndexParameters().Length > 0)适用于本文中描述的案例:http://msdn.microsoft.com/en-us/library/b05d59ty.aspx 因此,如果您关心名为Chars的属性为类型字符串的值,请使用它,但它对我感兴趣的大多数数组都不起作用,包括,我很确定,是原始问题的字符串数组。 / p>

答案 5 :(得分:1)

您可以将索引器转换为IEnumerable

    public static IEnumerable<T> AsEnumerable<T>(this object o) where T : class {
        var list = new List<T>();
        System.Reflection.PropertyInfo indexerProperty = null;
        foreach (System.Reflection.PropertyInfo pi in o.GetType().GetProperties()) {
            if (pi.GetIndexParameters().Length > 0) {
                indexerProperty = pi;
                break;
            }
        }

        if (indexerProperty.IsNotNull()) {
            var len = o.GetPropertyValue<int>("Length");
            for (int i = 0; i < len; i++) {
                var item = indexerProperty.GetValue(o, new object[]{i});
                if (item.IsNotNull()) {
                    var itemObject = item as T;
                    if (itemObject.IsNotNull()) {
                        list.Add(itemObject);
                    }
                }
            }
        }

        return list;
    }


    public static bool IsNotNull(this object o) {
        return o != null;
    }

    public static T GetPropertyValue<T>(this object source, string property) {
        if (source == null)
            throw new ArgumentNullException("source");

        var sourceType = source.GetType();
        var sourceProperties = sourceType.GetProperties();
        var properties = sourceProperties
            .Where(s => s.Name.Equals(property));
        if (properties.Count() == 0) {
            sourceProperties = sourceType.GetProperties(BindingFlags.Instance | BindingFlags.NonPublic);
            properties = sourceProperties.Where(s => s.Name.Equals(property));
        }

        if (properties.Count() > 0) {
            var propertyValue = properties
                .Select(s => s.GetValue(source, null))
                .FirstOrDefault();

            return propertyValue != null ? (T)propertyValue : default(T);
        }

        return default(T);
    }