码迷,mamicode.com
首页 > Windows程序 > 详细

C#里面中将字符串转为变量名

时间:2015-06-02 17:06:29      阅读:137      评论:0      收藏:0      [点我收藏+]

标签:

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());
        }
   }

 

C#里面中将字符串转为变量名

标签:

原文地址:http://www.cnblogs.com/rinack/p/4546616.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!