无法将类型“System.Collections.Generic.List<string>”隐式转换为“System.Collections.ArrayList
清泛原创
List<string> list = new List<string>();
.........
ArrayList al = new ArrayList();
al.AddRange(list);
如果单纯转换为对象数组,直接调用 list.ToArray() 方法。
上一篇:无法将方法组“Values”转换为非委托类型“System.Collections.Generic.List
下一篇:C#泛型(List)中基类和子类 怎么转换?