如何将对象强制转换为List

时间:2013-09-13 18:44:42

标签: c# reflection

我有一个实际上是List的对象。我有一个字符串是什么元素类型但我不知道如何将对象强制转换为List?这是一些描述我的问题的代码。

class Data
{
    public int ID { get; set; }
    public List<double> Values { get; set; }
}

static void Main(string[] args)
{
    Data d = new Data() { ID = 69, Values = new List<double>() };
    d.Values.Add(1.0);
    d.Values.Add(2.0);

    PropertyDescriptorCollection props = TypeDescriptor.GetProperties(typeof(Data));
    var propInfo = typeof(Data).GetProperties();

    foreach (var p in propInfo)
    {
        var Value = p.GetValue(d, null);
        var Type = p.PropertyType;

        if (Type.IsGenericType && Type.GetGenericTypeDefinition() == typeof(List<>))
        {
            // get the element type of a list
            var ElementType = Value.GetType().GetProperty("Item").PropertyType;

            // how to cast to List< "ElementType" > ???
        }
        else
        {
            types.Add( Type.FullName );
        }
    }
}

1 个答案:

答案 0 :(得分:4)

泛型和反射不是很好玩。您最好的选择是使用非通用的IList API:

IList list = (IList)Value;

然后你可以迭代,通过索引访问,添加,删除等