代码示例:
int a = 10;//创建int 型变量a并赋值10
object obj = new {a = a};//创建object型变量obj并对成员a赋值int型变量a
Type objType = obj.GetType();//获取obj的类型
//通过获取obj中的属性a并将其强制转换为int类型, b的值为10
int b = (int)objType .GetProperty( "a" ).GetValue(obj);
代码示例:
int a = 10;//创建int 型变量a并赋值10
object obj = new {a = a};//创建object型变量obj并对成员a赋值int型变量a
Type objType = obj.GetType();//获取obj的类型
//通过获取obj中的属性a并将其强制转换为int类型, b的值为10
int b = (int)objType .GetProperty( "a" ).GetValue(obj);