Click here to Skip to main content
15,897,518 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi All,

I want to display a number in Indian currency format.

Ex: 99999999.00 like 9,99,99,999.00 anyone please help me regarding this issue.

Thanks in advance.
Posted

1 solution

C#
double incsf = 99999999.00;
       string s = String.Format("{0:#,###}", incsf);
 
Share this answer
 
Comments
anushripatil 2-Jan-12 7:08am    
Hope that resolves ur problem

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900