我想將字符串添加到列表中的某個位置。我嘗試使用List.Insert()方法以及InsertRange()。兩者都給我錯誤。無法將文本插入列表<string>
//Using InsertRange() Method
string[] msg = { "Hi", "There",
"Good", "Morning" };
List<string> Lines=new List<string>;
Lines.InsertRange(4, msg);
//Using Insert() Method
string[] msg = { "Hi, Good Morning" };
List<string> Lines=new List<string>;
Lines.Insert(1, msg);
請建議解決方案。
有這麼多的基本錯誤([這裏是一個編譯和運行類似的版本](https://dotnetfiddle.net/Ow6fuY)),我建議你購買一本關於C#編程的書。 –