我怎么能有 ac# 枚举,如果我选择字符串它返回一个不同的字符串,就像在 java 中它可以通过
public enum sample{
some, other, things;
public string toString(){
switch(this){
case some: return "you choose some";
default: break;
}
}
}
Console.writeln(sample.some)
将输出:
you choose some
我只是希望我的枚举在我尝试调用它们时返回不同的字符串。