常數
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);
}
}
}
沒有留言:
張貼留言