i want display a given number into Rupees Format
Like
Given number is : 156735
my Expected output is 1,56,735.
how to display?
Answer Posted / ambrish
Dim Number As Double = 156735.0
Dim info As System.Globalization.CultureInfo =
System.Globalization.CultureInfo.GetCultureInfo("hi-IN")
Dim str As String = Number.ToString("C2", info)
TextBox1.Text = str
| Is This Answer Correct ? | 5 Yes | 0 No |
Post New Answer View All Answers
What is a function c#?
What is difference between a constant and read-only in C#?
What is xamarin used for?
Explain a MSIL ? Why is it appreciated by all developers?
What is the use of xmlserializer?
Can var be null c#?
What are the 2 kinds of data type conversions in c#?
What is delegates in c# and uses of delegates?
Is and as in c#?
What Happens In Memory When You Box And Unbox A Value-type?
What is the use of delegate?
What is the difference between throw and throw ex?
what is object-oriented programming (oop) language?
Why are strings immutable c#?
How do I unload an application domain?