我正在尝试如何例如如何设置
等于“#000000”的Color.RGG.Black
我正在尝试使其类似并实现到我的Constants类中。我该怎么做呢?Constants.Page.Title.MyCase
等于"My Case"
;
谢谢
最佳答案
您可以使用嵌套的静态类进行设置:
public static class Constants
{
public static class Page
{
public static class Title
{
public const string MyCase = "MyCase";
}
}
}
关于c# - 如何在C#中设置像这样的常量-Constants.Page.Title.MyCase?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/1231454/