Целочисленный формат. Применяется только к целочисленным типам. Задает количество цифр, выводимых на консоль, недостающее количество заполняет нулями. Можно применить к показателям счетчиков.
Main.cs
using
System;
class
Program {
-
public
static
int
Main() {
-
int
val = 128;
-
Console.WriteLine(
"{0:D5}"
, val);
-
Console.WriteLine(
"{0:D10}"
, val);
-
Console.WriteLine(
"{0:d}"
, val);
-
Console.ReadKey();
-
return
0;
-
}
}
using
System;
class
Program {
-
public
static
int
Main() {
-
int
val = 128;
-
Console.WriteLine(
"{0:D5}"
, val);
-
Console.WriteLine(
"{0:D10}"
, val);
-
Console.WriteLine(
"{0:d}"
, val);
-
Console.ReadKey();
-
return
0;
-
}
}
00128
0000000128
128
0000000128
128