gpt4 book ai didi

c# - 如何在c#中构建一组常量变量

转载 作者:太空狗 更新时间:2023-10-30 00:07:43 27 4
gpt4 key购买 nike

如何在c#中创建一组常量变量?

例如:

IconType {
public constant string folder = "FOLDER";
public constant string application = "APPLICATION";
public constant string system = "SYSTEM";
}

然后我需要像这样使用它图标类型.system但我不想做像 IconType type = new IconType() 这样的声明,我想定向访问它的变量。

它看起来就像java中的JOptionPanel,当我想显示图标时我只需要调用这个JOptionPane.WARNING_MESSAGE

最佳答案

只需在类中定义它们,因为 const 是隐式静态的,您可以使用它们

class IconType
{
public const string folder = "FOLDER";
public const string application = "APPLICATION";
public const string system = "SYSTEM";
}

稍后您可以像这样使用它们:

Console.WriteLine(IconType.folder);

您可能会看到 webarchive 页面:Why can't I use static and const together?作者:乔恩·斯基特

关于c# - 如何在c#中构建一组常量变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19117865/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com