PropertyInfo CurCultProp =
(typeof(CultureInfo)).GetProperty("CurrentCulture");
Console.WriteLine("CurrCult: " +
CurCultProp.GetValue(null,null));
http://msdn.microsoft.com/zh-cn/library/b05d59ty.aspx
public static string GetVariableValue (string name)
{
Type t = Type.GetType("Ue.Security.Configs");
PropertyInfo info= t.GetProperty(name, BindingFlags.Public | BindingFlags.Static);
return info.GetValue(null, null).ToString();
}