I\'m trying to perform the following cast
private void MyMethod(object myObject) { if(myObject is IEnumerable) { List c
How about
List collection = new List((IEnumerable)myObject);