首页 > 代码库 > C# 字符串转组件名、变量名
C# 字符串转组件名、变量名
字符串转组件名
(Controls["button1"] as Button).Text = "Hello";//单独组件(Controls["tabControl1"].Controls[0].Controls["DataSource1"] as TextBox).Text = "111.111.111.111";//嵌套组件
字符串转变量名
string str = "demo"; //可以写到下面button1_Click里面,demo就是下面的变量名public string demo = "Old String";private void button1_Click(object sender, EventArgs e){ //通过字符串获得变量值 MessageBox.Show(this.GetType().GetField(str).GetValue(this).ToString()); //显示Old String GetType().GetField(str).SetValue(this, "New String"); MessageBox.Show(spp); //显示New String MessageBox.Show(this.GetType().GetField(str).GetValue(this).ToString()); //显示New String}
或
public string Demo = "Old String";private void button2_Click(object sender, EventArgs e){ //通过字符串获得变量值 MessageBox.Show(this.GetType().GetField("Demo").GetValue(this).ToString()); //显示Old String //通过给变量赋值 this.GetType().GetField("Demo").SetValue(this, "New String"); //新的值 MessageBox.Show(Demo); //显示New String MessageBox.Show(this.GetType().GetField("Demo").GetValue(this).ToString()); //显示New String}
C# 字符串转组件名、变量名
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。