C#中怎么将textbox数据传输到数组中

2025-01-01 03:01:16
推荐回答(3个)
回答1:

1.取出textbox的text值
2.把值放到数组中 下面是最常用的
string[] a =new string[5] ; a[0] = "a ";
List b =new List(); b.Add("b");
ICollection d=new List(); 和上面list的用法一样
System.Collections.Hashtable c = new System.Collections.Hashtable();
c.Add("cKey", "cValue");

回答2:

string[] s=new string[]{"textbox1.text()","textbox2.text()"}

回答3:

textbox中的数据是个字符串,需要传输到什么样的数组中?