C#:如何操作 List使用 LINQ 或 LAMBDA 表达式
我有一个 List
就像
List<String> MyList=new List<String>
{
"101010",
"000000",
"111000"
};
我需要使用 "MyList" 创建一个新列表 (List
) 。因此“MyList”中的行变成新列表中的列,而列变成行
所以结果就像
{
"101",
"001",
"101",
"000",
"100",
"000"
}
现在我使用嵌套 for 循环来执行此操作。
有没有办法使用 LINQ
或 LAMBDA
表达式来做到这一点
i'm having a List<String>
like
List<String> MyList=new List<String>
{
"101010",
"000000",
"111000"
};
I need to create a new list (List<String>
) with "MyList" . so the rows in the "MyList" becomes columns in the new List and the columns become rows
So the result will be like
{
"101",
"001",
"101",
"000",
"100",
"000"
}
now i'm using nested for
loop to do this.
Is there any way to do this using LINQ
or LAMBDA
expression
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这是一个 LINQPad 脚本,可以实现这一点:
输出:
Here's a LINQPad script that does the trick:
Output:
当然,如果字符串长度不同,这就会中断。
Of course, this will break if the strings are not of identical length.