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 the use of static in c#?
How are methods overloaded?
Is datetime a value type in c#?
What is the delegates in c#?
Where test director stores its data ? Database ,Local file etc...? I need to read this data from Visual Studio 2005 c# client. Regards
What is overloading with example?
Explain About a class access specifiers and method access specifiers.
What is task parallel library?
What is console read in c#?
What are the Types of JIT and what is econo-JIT
What is the difference between hashtable and dictionary?
Which class comes after the SortedList class?
What is delegates and events?
Are c# references the same as c++ references?
Explain about accessibility modifier 'protected internal'?