J
Jochen Kalmbach
Hello,
we need to deliver or C# prduct to India...
But they do not have our numbers (0-9) instead they have some other
"symbols".
Is there any support from the int.ToString(CultureInfo) to support these
"numbers" !?
I tried the following, but only got the "english" numbers:
<code>
CultureInfo farsi = new CultureInfo("fa-IR");
int i = 12;
this.label1.Text = i.ToString(farsi);
</code>
I also changed in "Regional and Lagunage Options" the "Standard Digits"
to the correct "arabic" values, no change...
I also looked at:
Number Formatting
http://www.microsoft.com/globaldev/getwr/steps/wrg_nmbr.mspx
wich does not explain how to do this with .NET...
Does anybod know an solution !?
--
Greetings
Jochen
My blog about Win32 and .NET
http://blog.kalmbachnet.de/
we need to deliver or C# prduct to India...
But they do not have our numbers (0-9) instead they have some other
"symbols".
Is there any support from the int.ToString(CultureInfo) to support these
"numbers" !?
I tried the following, but only got the "english" numbers:
<code>
CultureInfo farsi = new CultureInfo("fa-IR");
int i = 12;
this.label1.Text = i.ToString(farsi);
</code>
I also changed in "Regional and Lagunage Options" the "Standard Digits"
to the correct "arabic" values, no change...
I also looked at:
Number Formatting
http://www.microsoft.com/globaldev/getwr/steps/wrg_nmbr.mspx
wich does not explain how to do this with .NET...
Does anybod know an solution !?
--
Greetings
Jochen
My blog about Win32 and .NET
http://blog.kalmbachnet.de/