C# Class MiscUtil.Conversion.DoubleConverter

A class to allow the conversion of doubles to string representations of their exact decimal values. The implementation aims for readability over efficiency.
Show file Open project: jadref/buffer_bci

Public Methods

Method Description
ToExactString ( double d ) : string

Converts the given double to a string representation of its exact decimal value.

Method Details

ToExactString() public static method

Converts the given double to a string representation of its exact decimal value.
public static ToExactString ( double d ) : string
d double The double to convert.
return string