Given the C# enum:
public enum options: byte
{
yes = 0,
no = 22,
maybe = 62,
foscho = 42
}
How do you retrieve the String 'maybe' if given the byte 62?
You can cast it to enum and retreive by ToString():
var result = ((options)62).ToString();
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With