从List <byte> </byte>中删除空字节

时间:2013-02-26 14:03:53

标签: c# list bytearray

如何从List<byte>删除空字节?

例如,我得到了一个大小为[5]的列表。

[0] = 5
[1] = 3
[2] = 0
[3] = 0
[4] = 17

在此示例中,我想删除索引为{2}的byte

列表中的项目每秒都会更改。所以下次列表可以填充类似的内容:

[0] = 0
[1] = 2
[2] = 3
[3] = 4
[4] = 0

3 个答案:

答案 0 :(得分:7)

就像

myList.RemoveAll(b => b == 0);

答案 1 :(得分:5)

bytes.RemoveAll(x => x == 0)

答案 2 :(得分:1)

如何使用 List.RemoveAll() 方法?

  

删除符合条件定义的所有元素   指定的谓词。

YourList.RemoveAll(n => n == 0);

例如;

List<int> list = new List<int>(){5, 3, 0, 0, 17};
list.RemoveAll(n => n == 0);

foreach (var i in list)
{
    Console.WriteLine(i);
}

输出将是;

5
3
17

这是 DEMO