我在InvalidCastException
尝试投射时遇到问题
IList<KeyValuePair<string, object>> x
对一个
IList<IItem> y
IItem 是我尝试过的界面...
IList<IItem> y = (IItem) x; //INVALIDCASTEXCEPTION
IList<IItem> y = x.Cast<IItem>().ToList(); //another exception
...有人可以帮助我吗?