string format

J

July

Hi, anyone knows how to format a number into two decimal
positions such as 100.00? I was trying to use
myStringName.ToString("d"), but seems not working.
 
M

Mahesh Subramanian

Try using myStringName.ToString("C") - this converts to
currency format.
You may also want to look at the IFormatProvider interface
under System namespace.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Top