当前位置:主页 > 软件编程 > .NET代码 >

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

时间:2021-03-08 11:35:42 | 栏目:.NET代码 | 点击:

复制代码 代码如下:

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

您可能感兴趣的文章:

相关文章