例如
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())
}
}