I want to be able to construct a numericUpDown field in C# where on each arrow click the value in the field increases by one resolution.
For example;
Let's say my value is 20.0, and it's IEEE754 hexadecimal representation is 0x41a00000.
If I click the arrow up button, I want to see the decimal representation of 0x41a00001, which is 20.0000019073
Likewise, If I click the arrow down, I should see 19.9999980927.
I tried setting the Increment property of the numericUpDown as the 0.0000019073, but I think this value is not constant in IEEE754.
To be more concise, if the value is 700.0, it's IEEE754 representation is 0x442f0000, but 0x442f0001 corresponds to 700.000061035, so in this case it increments by 0.000061035 instead of 0.0000019073.
Thank you.