Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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)

share|improve this question
What have you tried? – Oded Apr 5 '12 at 11:40
I could find something on The Code Project – Wouter Huysentruit Apr 5 '12 at 11:40
And also on stackoverflow Did you google this? – Wouter Huysentruit Apr 5 '12 at 11:42
extend this for doubles: stackoverflow.com/a/3267/284240 – Tim Schmelter Apr 5 '12 at 11:42
I didn't try anything. I thought that there is a buil-in method for doing this. – Maha Adel Apr 5 '12 at 11:42

marked as duplicate by juergen d, Anonymous, marc_s, bytebender, Graviton Apr 9 '12 at 14:31

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

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.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.