为什么第二次转换失败
InvalidCastException:无法将“System.Collections.Generic.List`1[System.Nullable`1[System.Boolean]]”类型的对象转换为“System.Collections.Generic.IEnumerable`1[System.Object]”类型。
object list1 = new List<string>() { "a", "b" };
object list2 = new List<bool?>() { true, false };
IEnumerable<object> bind1 = (IEnumerable<object>)list1;
IEnumerable<object> bind2 = (IEnumerable<object>)list2;
任何想法,将不胜感激。