现在的位置: 首页 > 综合 > 正文

装箱后,object仍然清楚其存储的类型

2013年06月22日 ⁄ 综合 ⁄ 共 375字 ⁄ 字号 评论关闭
/*--===------------------------------------------===---
装箱后,object仍然清楚其存储的类型
            许明会    2007年12月13日 19:56:38
--===------------------------------------------===---*/
using System;

namespace xumh
{
    public class runMyApp
    {
        static void Main()
        {
            object o = 5;    //System.Int32
            Console.WriteLine(o.GetType().ToString());
        }
    };
}

抱歉!评论已关闭.