I have a numericupdown control on my form. The value is 17, I need to store that number into a variable, then convert it to a percentage of 0-255, then convert it to hex.
What I have: 17 Where I need to get: ((17 / 100) * 256 ) - 1 = 42.52 which gets rounded to 43 Then I need to convert that to hex: 43 = 2B
What I don't know/understand.
When I take in the value, what type of variable do I store it in ? string ? Int? double ?
Can someone provide an example please.
Thank you, James
I would go this way:
NumericUpDown.Value
is of typedecimal
(see MSDN), so you should start with adecimal
. I've entered 17 here directly, as you did in your example.