List的Add和Insert操作有什么区别?
List<Tuple<int,string>> samplelinq = new List<Tuple<int, string>>();
这里我想要列出一个元组。我应该使用添加还是插入。
c#
c# ×1