2015年11月3日 星期二

C3_3 測試顯示數實值型別轉換

using System;
namespace C3_3
{
    public class Progarm
    {
        public static void Main()
        {
            long lValue = Int64.MaxValue;
            int iValue = (int)lValue;
            Console.WriteLine("int:{0} = {1}", lValue, iValue);
        }
    }
}

沒有留言: