Description
I have a use case where I have a bot enum and with my enums .NET will warn me if I do not provide None = 0 in said enums.
The issue here:
- Because of this
None ends up being an option in the parameters to my commands that takes in those enums, which in the implementation to my bot is an invalid option that will throw by design.
This is why I think this is needed as other people might be getting bitten by this as well.
Description
I have a use case where I have a bot enum and with my enums .NET will warn me if I do not provide
None = 0in said enums.The issue here:
Noneends up being an option in the parameters to my commands that takes in those enums, which in the implementation to my bot is an invalid option that will throw by design.This is why I think this is needed as other people might be getting bitten by this as well.