-
Notifications
You must be signed in to change notification settings - Fork 303
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Махлонов Дмитрий #210
base: master
Are you sure you want to change the base?
Махлонов Дмитрий #210
Conversation
|
||
namespace TagCloud.TextReader; | ||
|
||
public record class TextReaderSettings(string Path, Encoding Encoding); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Не очень хорошо передавать напрямую текст, так как таким ридером не получится воспользоваться дважды для разных файлов. Тогда лучше здесь передавать класс настроек
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
тут не совсем понял, там же не текст передается, а класс настроек в котором уже лежит путь до файла
{ | ||
public List<string> ReadText() | ||
{ | ||
return File.ReadLines(settings.Path, settings.Encoding) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Это уже похоже на объединение чтения и разделения на слова. Как тебе идея сделать отдельного разделителя и отдельного читателя?
No description provided.