程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> C# >> C#入門知識 >> C# 字符串轉組件名、變量名,

C# 字符串轉組件名、變量名,

編輯: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
}

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved