首页 > 编程 > C# > 正文

在c#中把字符串转为变量名并获取变量值的小例子

2020-01-24 03:10:32
字体:
来源:转载
供稿:网友

复制代码 代码如下:

public class Program
    {
        public string str = "spp";
        public string spp = "Hello World!";

        public static void Main(string[] args)
        {
            Program p = new Program();

            Console.WriteLine(p.GetType().GetField(p.str).GetValue(p).ToString());
            Console.ReadKey();
        }
    }

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表