show/hide this revision's text 2 code markup needed to display angle brackets correctly

string inherits from object but IList<string> does not inherit from IList<object> they are unrelated types and therefor you can't cast between them.

Just think what would happen if this worked:

// THIS CODE DOES NOT WORK
IList<object> list = new List<string>(); // this doesn't compile
list.Add(5); // because this is perfectly valid on IList<object> but not on IList<string>
show/hide this revision's text 1

string inherits from object but IList does not inherit from IList they are unrelated types and therefor you can't cast between them.

Just think what would happen if this worked:

// THIS CODE DOES NOT WORK
IList<object> list = new List<string>(); // this doesn't compile
list.Add(5); // because this is perfectly valid on IList<object> but not on IList<string>