Click here to Skip to main content
15,886,788 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Sir/ Madam,

How to add Indian Rupee Symbol in Datagridview TextBox Format Value?
Posted

As it is a standardized unicode symbol[^], you can use it as any other character. But be aware to use a font at that point that supports this set of glyphs.
 
Share this answer
 
Similar question: New Rupee Symbol in c# Winforms?[^]

Regards..
 
Share this answer
 
You can use string format for showing currency symbol as a culture specific.

C#
// your currency value
decimal moneyvalue = 1921.39m;
string formatedCurrencyString= String.Format("Order Total: {0:C}", moneyvalue);
 
Share this answer
 

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