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

2024年11月20日 09:47
有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);