3

I've looked at similar questions but nothing quite fits. I have an object which happens to contain a List. I'd like to get it into something I can enumerate.

For example:

object listObject;          // contains a List<Something>
List<object> list;

list = listObject as List<object>;   // list contains null after

foreach ( object o in list )
{
    // do stuff
}

The conversion from object to List<object> is the problem.

EDIT:

What I finished with:

object listObject;          // contains a List<Something>
List<object> list;

IEnumerable enumerable = listObject as IEnumerable;

if ( enumerable != null )
{
    list = enumerable.Cast<object>().ToList();

    foreach ( object o in list )
    {
         // do stuff
    }
}

Try This:

list = (listObject as IEnumerable).Cast<object>().ToList()
4

1 回答 1

7

尝试这个:

list = (listObject as IEnumerable).Cast<object>().ToList()
于 2013-03-12T03:35:30.087 回答