我使用以下方法创建了一个列表:
List<int> foo = new List<int>();
创建此索引后,我需要能够将值插入到任何索引中。如果我有
foo[325] = 55;
anArgumentOutOfRangeException
抛出以下详细信息:
Index must be within the bounds of the List.
Parameter name: index
我必须做什么才能纠正这个问题?我可以用虚拟值填充列表,然后在填充列表后访问索引,但这似乎是一个混乱的解决方案。