将List转换为List
- 论坛
- 将List<T>转换为List<object>
25 浏览
将List转换为List
我在泛型类中遇到了问题。我的代码如下:
public abstract class IGroup: IEnumerable where T : class { protected List groupMembers; protected List groupIGameActionList; public IGroup() { groupMembers = new List (); groupIGameActionList = new List (); //groupIGameActionList.Add(new DieGameAction(groupMembers)); } }
还有第二个类:
class DieGameAction : IGameAction { List
我不知道如何在注释的那一行中将groupMembers
进行强制转换或转换类型。这样是不起作用的,因为它无法转换(List
到List
)。那么我该怎么做呢?