Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试如何设置例如
Color.RGG.Black 等于“#000000”
我正在尝试使其类似并实现到我的常量类中。我该怎么做呢?
Constants.Page.Title.MyCase 等于 "My Case";
Constants.Page.Title.MyCase
"My Case"
谢谢
您可以使用嵌套的静态类进行设置:
public static class Constants { public static class Page { public static class Title { public const string MyCase = "MyCase"; } } }