Creating a long precision number in C#
I have a bunch of code written by someone else for a statistics package,
like so:
float myValue = 0.0f;
That makes myValue a single point precision number. Is there a way to make
it go to five decimal places?
Is this the correct way:
float myValue = 0.00000f;
No comments:
Post a Comment