How can i have a c# enum that if i chose to string it returns a different string, like in java it can be done by
public enum sample{
some, other, things;
public string toString(){
switch(this){
case some: return "you choose some";
default: break;
}
}
}
Console.writeln(sample.some)
will output:
you choose some
i just want my enums to return a different string when i try to call them.