gpt4 book ai didi

c# - 定义枚举结构时出错。

转载 作者:太空宇宙 更新时间:2023-11-03 18:38:39 26 4
gpt4 key购买 nike

我正在用枚举创建这样的类。

 public class D
{
enum e { "one","two","three"};
}

它给出了"identifier expected" 编译错误。这有什么不对的。有没有其他结构。

最佳答案

您不能在 C# 中使用字符串枚举,有关使用属性的示例,请查看 this article at codeproject .

你需要定义你的枚举

enum e
{
One, Two, Three
}

关于c# - 定义枚举结构时出错。,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11609858/

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