>>883
C#ではreadonlyがオススメだけどな
public class Constant
{
public static readonly int HOGE = 325;
public static readonly float FHOGE = 325.0f;
public static readonly double DHOGE = 325.0;
}