C#中怎么把变量的值传递到字符串中

2024-11-20 09:47:33
推荐回答(2个)
回答1:

你说的应该是DropDownList吧。在DropDownList的SelectedIndexChanged事件中。获取值。 代码: string zhi = this.DropDownList1.DataValueField.toString(); 赋值另一个DropDownList代码:this.DropDownList2.DataValueField=zhi;

回答2:

int x = 1;
string y=string.Format("x的值是{0}", x);
Console.WriteLine(y);