Russian culture
using System;
using System.Globalization;
using System.Windows.Forms;
public class MainClass
{
static void Main() {
CultureInfo russian = new CultureInfo( "ru-RU" );
double money = 123.45;
string localMoney = money.ToString( "C", russian );
Console.WriteLine( localMoney );
}
}
Output 123,45?.
|
HTML code for linking to this page:
Related in same category :
-
-
-
-
-
-
-
-
-
-
|