📜  c# list remove by index - C# 代码示例

📅  最后修改于: 2022-03-11 14:49:21.534000             🧑  作者: Mango

代码示例2
List.Remove("ElementTypeAndValue");
// Or remove from index using:
List.Remove(List[index]);