本文介绍了Array的的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 你好 我之前发过关于数组的消息并获得了Cor的帮助和示例。这是 Dim myArray As New ArrayLis myArray.Add(" Peugeot" myArray.Add(" Ferari" myArray.Add(QUOT;菲亚特" myArray.Add(QUOT;雷诺" myArray.RemoveAt(0 myArray.Insert(1," Mercedes" myArray.Clear( )我想问一下如何循环播放arraylist所以我可以将这些值转换成另一个控件 我试过这个但它得到了错误 私人CarArray作为新的ArrayLis 私人索引为整数 Button1_Onclick .................................. ............... CarArray.add(Index,Textbox1.Text 指数=指数+ 为什么我不能做这个编码 谢谢你 Hello I messaged before about arrays and got help and example off Cor. Here it is Dim myArray As New ArrayLismyArray.Add("Peugeot"myArray.Add("Ferari"myArray.Add("Fiat"myArray.Add("Renault"myArray.RemoveAt(0myArray.Insert(1, "Mercedes"myArray.Clear( I want to ask how i can loop through an arraylist so i can get these values into another controlI tried this but it gets error Private CarArray as new ArrayLisPrivate Index as intege Button1_Onclick................................... ...............CarArray.add(Index, Textbox1.TextIndex = Index + why can i not do this codingthank yo推荐答案 这篇关于Array的的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 11-02 15:15