/
krasninja
/
querycat
Обзор
Документация
Войти
/
krasninja
/
querycat
Код
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
src/QueryCat.Backend/Formatters/TextTableInput.cs
30 строк
855 B
Ivan Kozhin
Allow to set up application culture
20 май 2024, 12:00
20 май 2024, 12:00
245e0ce
Код
Авторство
О чём код?
using QueryCat.Backend.Core; using QueryCat.Backend.Core.Utils; using QueryCat.Backend.Storage; namespace QueryCat.Backend.Formatters; /// <summary> /// The input that is optimized to read from STDIN. /// </summary> internal sealed class TextTableInput : DsvInput { /// <inheritdoc /> public TextTableInput(Stream stream, string? key = null) : base(new DsvOptions(stream) { InputOptions = new StreamRowsInputOptions { DelimiterStreamReaderOptions = new DelimiterStreamReader.ReaderOptions { Delimiters = [' '], DelimitersCanRepeat = true, QuoteChars = [], SkipEmptyLines = true, Culture = Application.Culture, }, } }, key) { } }