Skip to content
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

Open
wants to merge 6 commits into
base: master
Choose a base branch
from
Open

Conversation

kokodio
Copy link

@kokodio kokodio commented Dec 8, 2024

No description provided.


private readonly HashSet<Type> excludedTypes = [];
private readonly HashSet<string> excludedProperties = [];
private readonly HashSet<object> processedObjects = [];

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Не уверен, но скорее всего в конструктор HashSet'а нужно передать ReferenceEqualityComparer.Instance. Иначе будет использоваться Equals объекта и есть вероятность, что "совпадут" два одинаковых по состоянию, но разных по ссылке объекта

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

result = obj switch
{
IFormattable formattable => formattable.ToString(null, numberCulture) + Environment.NewLine,
string str when maxStringLength.HasValue => string.Concat(

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Круто что знаешь про Span, но при наличии ограничения на длину, сама строка может быть сразу подходящей и тогда всё это преобразование будет избыточным. Кстати, что будет, если сравнить str.Length < (или >) int?(null)?

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Будет False в обоих случаях


namespace ObjectPrinting;

public static class PrintingExtensions

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nit: Операция выглядит слишком специфичной, чтобы быть расширением. Я бы завел статические методы в ObjectPrinter

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

return this;
}

public PrintingConfig<TOwner> SetCulture(IFormatProvider culture)

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Насколько понял постановку задачи, культуру должно быть можно задать для каждого типа в отдельности (хотя я плохо понимаю сценарий, в котором могло бы такое понадобиться)

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants