We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
A tool to be able to find out what value is used if you pick certain variants on a enum.
I have a number which is the value of a bit flag enum but I don't know which enum values that corresponds too.
I have a set of enum variants but I don't know which number the enum represent.
[Flags] enum Weekdays { Monday = 1, Tuesday = 2, Wednesday = 4, Thursday = 8, Friday = 16, Saturday = 32, Sunday = 64 }
So when I click on the checkboxes it calculate the enum value and displays the number in the number input box.
If I type a number in the number input box it checks the appropriate checkboxes.
No response
The text was updated successfully, but these errors were encountered:
No branches or pull requests
What feature or new tool do you think should be added to DevToys?
A tool to be able to find out what value is used if you pick certain variants on a enum.
Why do you think this is needed?
I have a number which is the value of a bit flag enum but I don't know which enum values that corresponds too.
I have a set of enum variants but I don't know which number the enum represent.
Solution/Idea
So when I click on the checkboxes it calculate the enum value and displays the number in the number input box.
If I type a number in the number input box it checks the appropriate checkboxes.
Comments
No response
The text was updated successfully, but these errors were encountered: