Scientific notation in C#

in C# there is built-in support for specifying numbers, using scientific notation.

an example:

 double tenToThePowerOfMinusFifteen = 1e-15;  


Comments