说一个方向:使用typeof(),即typeof关键字, 如:typeof(var or express)。typeof() 是GUN C提供的一种特性,可参考C-Extensions,它可以取得变量的类型,或者表达式的类型.方向有了,具体还是要自己深入去研究,如包含什么头文件等。
class Test { public static string StaticPer = "StaticPer"; public readonly string ReadOnlyPer = "ReadOnlyPer"; public const string ConstPer = "ConstPer"; public string GetPer { get { return "GetPer"; } } private string _SetPer; public string SetPer {...