C#系列教程——对一个对象的装箱取消转换

代码如下:

[csharp]  
using System;  
class Unboxing_Test  
{  
    static void Main()   
    {  
        int i = 100;  
        object o = i;  // 装箱  
        try   www.2cto.com
        {  
            int j = (int)o;  // 取消装箱              
            System.Console.WriteLine("取消装箱成功.");  
        }  
        catch (System.InvalidCastException e)   
        {  
            System.Console.WriteLine("{0} 取消装箱异常.", e.Message);  
        }  
    }  
}  
 
上一篇:[Android UI] listview 自定义style


下一篇:mybatis使用@param("xxx")注解传参和不使用的区别