msdn 上给的
typeof(类型)
typeof表达式采用以下形式:
System.Type type = typeof(int);
这样 Type 类型 的变量 type 存储的就是 int
若要获取表达式的运行时类型,可以使用 .NET Framework 方法 GetType,如以下示例中所示:
int i = 0;
System.Type type = i.GetType();
System.Type type = i.GetType();
msdn 上给的
typeof(类型)
typeof表达式采用以下形式:
如果你觉得写的不错,欢迎转载和点赞。 转载时请保留作者署名jilodream/王若伊_恩赐解脱(博客链接:http://www.cnblogs.com/jilodream/