文字列を変数名に変換(C#)

458 ワード

質問:
string str = "spp";
string spp = "very good"; 

strの値を「very good」に出力するにはどうすればいいですか?
回答:
public partial class Form1 : Form
    {
        string str = "spp";
        public string spp = "very good";

        public Form1()
        {
            InitializeComponent();

            MessageBox.Show(this.GetType().GetField(str).GetValue(this).ToString());
        }
    }