/
spirzen
/
it-code-examples
Обзор
Документация
Войти
/
spirzen
/
it-code-examples
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
examples/csharp/csharp-505-25-015/main.cs
15 строк
371 B
Spirzen
Code migration pack
09 июн 2026, 01:41
09 июн 2026, 01:41
cebc284
Код
Авторство
О чём код?
public class Logger { private static readonly string _logPath; static Logger() { _logPath = Path.Combine(Environment.CurrentDirectory, "logs.txt"); Directory.CreateDirectory(Path.GetDirectoryName(_logPath)); } public static void Log(string message) { File.AppendAllText(_logPath, $"{DateTime.Now}: {message}\n"); } }