Possible Duplicate:
.NET convert number to string representation (1 to one, 2 to two, etc…)
I need a method which takes double value (ex: 300.5) to a text (ex:Three hundred and fifty)
Possible Duplicate:
.NET convert number to string representation (1 to one, 2 to two, etc…)
I need a method which takes double value (ex: 300.5) to a text (ex:Three hundred and fifty)
There is nothing built into the BCL.
You will need to either find a third party library such as the one @WouterH commented with, or write your own.