1、测试数据
//测试数据string str = "";List<byte[]> bytes = new List<byte[]>();for(int i=0;i<10;i++){byte[] b=new byte[2];b[0] = (byte)(2 * i);b[1] = (byte)(2 * i+1);bytes.Add(b);str += b[0] + " " + b[1] + " ";}Console.WriteLine("测试数据");Console.WriteLine(str);
运行结果:
测试数据
0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
2、获取某段数据
List.Skip(n):跳过n个数据
List.Take(n):获取那个数据
//获取某段数据str = "";List<byte[]> bytes1= bytes.Skip(3).Take(3).ToList();foreach (byte[] b in bytes1){str += b[0] + " " + b[1] + " ";}Console.WriteLine("获取某段数据");Console.WriteLine(str);
运行结果:
获取某段数据
6 7 8 9 10 11
3、删除某段数据
List. RemoveRange(int index, int count):从下标index开始,删除count个元素。
//删除某段数据str = "";bytes.RemoveRange(2, 7);foreach (byte[] b in bytes){str += b[0] + " " + b[1] + " ";}Console.WriteLine("删除某段数据");Console.WriteLine(str);
运行结果:
删除某段数据
0 1 2 3 18 19