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>
