欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

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

程序员文章站 2023-12-20 19:54:17
复制代码 代码如下:public class program    {      ...

复制代码 代码如下:

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

上一篇:

下一篇: