Commands\Test\MTP\Terminal\HumanReadableDurationFormatter.cs (8)
28terminal.Append(GetFormattedPart(duration.Hours, hasParentValue, "h"));
34terminal.Append(GetFormattedPart(duration.Minutes, hasParentValue, "m"));
40terminal.Append(GetFormattedPart(duration.Seconds, hasParentValue, "s"));
46terminal.Append(GetFormattedPart(duration.Milliseconds, hasParentValue, "ms", paddingWitdh: 3));
82stringBuilder.Append(GetFormattedPart(duration.Value.Hours, hasParentValue, "h"));
88stringBuilder.Append(GetFormattedPart(duration.Value.Minutes, hasParentValue, "m"));
94stringBuilder.Append(GetFormattedPart(duration.Value.Seconds, hasParentValue, "s"));
102stringBuilder.Append(GetFormattedPart(duration.Value.Milliseconds, hasParentValue, "ms", paddingWitdh: 3));