I have some double values I want to convert to a string with this pattern:
0.xx or x.xx
Currently I have try this:
double.T
myDouble.ToString("N2")
should also work.
Have a look at
MSDN: Custom Numeric Format Strings
MSDN: Standard Numeric Format Strings