我有这个代码返回一个List
var addRoles = newRoles
.Where(x => oldRoles
.All(y => y != x))
.ToList();
我在方法中使用它,但该方法需要一个字符串数组:
string[]
如何将addRoles变量转换为字符串数组?
答案 0 :(得分:2)
var addRoles = newRoles
.Where(x => oldRoles
.All(y => y != x))
.ToArray();