我有一個列表,我已經添加了我的winform文本框,如下所示,但列表爲0,因爲計數從0開始,我如何使它基於?c#我如何使我的列表1基於而不是0基於
List<TextBox> textBoxList = new List<TextBox>();
textBoxList.Add(textBox1);
textBoxList.Add(textBox2);
textBoxList.Add(textBox3);
textBoxList.Add(textBox4);
textBoxList.Add(textBox5);
textBoxList.Add(textBox6);
textBoxList.Add(textBox7);
textBoxList.Add(textBox8);
textBoxList.Add(textBox9);
textBoxList.Add(textBox10);
textBoxList.Add(textBox11);
textBoxList.Add(textBox12);
我有其可以是從1到12的任何數量的指標,illd喜歡使用這個索引來找到正確的文本框,以便索引6將文本框6 ..而不是文本框5
你不,真的。解釋你爲什麼要這樣做,我相信我們可以給你一個很好的指示,而不是嘗試什麼。 –
你爲什麼需要這個? –
可能重複的[從1開始索引不是從0](http://stackoverflow.com/questions/2799088/starting-index-from-1-not-from-0) – V4Vendetta