C# 字符串转组件名变量名

Posted 中国蓝天

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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# 字符串转组件名变量名的主要内容,如果未能解决你的问题,请参考以下文章

C#中变量名前的@符号是啥意思? [复制]

在 C# 中为变量名添加数字

如何通过变量名访问 C# struct 属性?

创建动态变量名

通过变量名声明一个新对象

java:蛇形命名法格式(snake-case)字符串变量名转驼峰命名法格式(camel-case)