C# List 删除其中一段元素
梗概
在通信或者某些数据处理中,需要把一个数据段中某一段连续的数据删除,可参考本方法。
关键词
C#, List, 删除一段元素, 通信, 数据处理
内容
RemoveRange(Int32, Int32)
从 List 中移除一定范围的元素。
代码块
using System;
using System.Collections.Generic;
public class Example
{
public static void Main()
{
string[] input = { "Brachiosaurus",
"Amargasaurus",