c#

位置:IT落伍者 >> c# >> 浏览文章

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


发布日期:2024年08月09日
 
C#里面中将字符串转为变量名
例如

string str = spp;

string spp = very good;

怎样搞 str 而得到 very good 这个值?

答案

public partial class Form : Form

{

string str = spp;

public string spp = very good;

public Form()

{

InitializeComponent()

MessageBoxShow(thisGetType()GetField(str)GetValue(this)ToString())

}

}

上一篇:c#判断远程文件是否存在

下一篇:c#生成无重复的验证码