Разрядный формат. Отделяет группу разрядов. Все зависит от того, что Вы установили в параметрах настройки "Язык и региональные настройки".
Main.cs
using
System;
class
Program {
-
public
static
int
Main() {
-
decimal
val = 1234567.2802m;
-
Console.WriteLine(
"{0:N}"
, val);
-
Console.WriteLine(
"{0:n}"
, val);
-
Console.ReadKey();
-
return
0;
-
}
}
using
System;
class
Program {
-
public
static
int
Main() {
-
decimal
val = 1234567.2802m;
-
Console.WriteLine(
"{0:N}"
, val);
-
Console.WriteLine(
"{0:n}"
, val);
-
Console.ReadKey();
-
return
0;
-
}
}
1 234 567,28
1 234 567,28
1 234 567,28