As the title suggests I would like to convert a long number to the format with words using C#. The Culture settings don't seem to do this and I am just currently doing this
String.Format(new CultureInfo("en-IN"), "{0:C0}", Price)
But for very long numbers I would prefer the word format. I am not from India and only vaguely familiar with how the system works.
While I can't give you the code itself, here's the system
I had written the routines for an accounting package I made, so writing it is not particularly hard.