在C#中,您可以通過使用public static readonly
或const
關鍵字來定義全局常量
方法1:使用public static readonly
定義全局常量:
public class Constants
{
public static readonly string MyConstant = "This is a global constant";
}
然后在其他類中使用它:
public class MyClass
{
public void PrintConstant()
{
Console.WriteLine(Constants.MyConstant);
}
}
方法2:使用const
定義全局常量:
public class Constants
{
public const string MyConstant = "This is a global constant";
}
然后在其他類中使用它:
public class MyClass
{
public void PrintConstant()
{
Console.WriteLine(Constants.MyConstant);
}
}
注意:使用const
定義的常量必須在聲明時初始化,且不能使用static
關鍵字。而使用public static readonly
定義的常量可以在構造函數中初始化。