I've got some C code that defines a exponential number as a constant. How do I write this in C#?
double TOL = 1.E-8d;
double TOL2 = 1.E - 8;
|
I've got some C code that defines a exponential number as a constant. How do I write this in C#?
| ||||
|
feedback
|
|
If there are no numbers after the decimal, you don't include the point. Same as in C/C++/etc. So:
Or maybe, for a different value:
This is in the spec, section 2.4.4.3: | |||
|
feedback
|
|
You were very close with your first form - but you just needed a digit after the ".", or remove the "." entirely:
See section 2.4.4.3 of the C# language spec for the rules around this. Note that you can use a lower-case "e" if you want, too:
And double is the default type if you omit the suffix from a "real" literal, so these are valid too:
... but personally I'd include the suffix for readability. | |||
|
feedback
|
|
| |||
|
feedback
|