1. 程式人生 > >C# Data Type 資料型別

C# Data Type 資料型別

裝箱與拆箱Demo

using System;

namespace Boxing
{
    class Program
    {
        static void Main(string[] args)
        {
            int i = 3;
            //裝箱,隱式轉換
            object o = i;
            //拆箱,顯示轉換
            int y = (int)o;
        }
    }
}