2015年11月2日 星期一

C2_4

常數


using System;
namespace C2_4
{
    public class TestConst
    {
        public const int x = 200;
        public const int y = x + 100;

    }
    public class Test
    {
        public static void Main()
        {
            Console.WriteLine("{0},{1}",TestConst.x, TestConst.y);
        }
    }
}

沒有留言: