当前位置: 代码迷 >> ASP.NET >> c#中的 typeof 是什么意思?解决方法
  详细解决方案

c#中的 typeof 是什么意思?解决方法

热度:6034   发布时间:2013-02-26 00:00:00.0
c#中的 typeof 是什么意思?
c#中的     typeof     是什么意思?

------解决方案--------------------------------------------------------
typeof运算符返回一个特定类型的Type对象,
如typeof(string)返回System.String类型的Type对象
------解决方案--------------------------------------------------------
相当于
Object.GetType()
------解决方案--------------------------------------------------------
获得某一类型的 System.Type 对象


typeof( "System.String ")
获取string类型的Type
Type是一个数据类型
------解决方案--------------------------------------------------------
获取对象类型
  相关解决方案