Commands\Test\MTP\Terminal\HumanReadableDurationFormatter.cs (8)
32terminal.Append(GetFormattedPart(duration.Hours, hasParentValue, "h"));
38terminal.Append(GetFormattedPart(duration.Minutes, hasParentValue, "m"));
44terminal.Append(GetFormattedPart(duration.Seconds, hasParentValue, "s"));
50terminal.Append(GetFormattedPart(duration.Milliseconds, hasParentValue, "ms", paddingWitdh: 3));
86stringBuilder.Append(GetFormattedPart(duration.Value.Hours, hasParentValue, "h"));
92stringBuilder.Append(GetFormattedPart(duration.Value.Minutes, hasParentValue, "m"));
98stringBuilder.Append(GetFormattedPart(duration.Value.Seconds, hasParentValue, "s"));
106stringBuilder.Append(GetFormattedPart(duration.Value.Milliseconds, hasParentValue, "ms", paddingWitdh: 3));