/
githubmirror
/
Files
Обзор
Документация
Войти
/
githubmirror
/
Files
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/Files.App/Services/DateTimeFormatter/SystemDateTimeFormatter.cs
19 строк
447 B
Yair
Code Quality: Ran code cleanup (#17307)
25 июл 2025, 03:57
Не верифицирован
25 июл 2025, 03:57
4558bc2
Код
Авторство
О чём код?
// Copyright (c) Files Community // Licensed under the MIT License. namespace Files.App.Services.DateTimeFormatter { internal sealed class SystemDateTimeFormatter : AbstractDateTimeFormatter { public override string Name => Strings.SystemTimeStyle.GetLocalizedResource(); public override string ToShortLabel(DateTimeOffset offset) { if (offset.Year is <= 1601 or >= 9999) return " "; return ToString(offset, "g"); } } }