We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The following code throws a stack overflow exception.
var formatter = new SpanFormatter(); formatter.AddFormatter<int>(x => $"Int: {x}"); Span span = formatter.Format(42);
The issue is the SpanFormatter recurses on the parameter, and each time looks up the formatter, which causes it to loop back on itself.
If you specify a format parameter the problem no longer occurs:
var formatter = new SpanFormatter(); formatter.AddFormatter<int>(x => $"Int: {x:F0}"); Span span = formatter.Format(42);
This is due to the different code path that handles the format.
We also need to consider how to handle this in the generic case. Consider what happens if a format specifier is declared on string.
string
var formatter = new SpanFormatter(); formatter.AddFormatter<string>(x => $"Prefix: {x}"); Span span = formatter.Format("42");
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The following code throws a stack overflow exception.
The issue is the SpanFormatter recurses on the parameter, and each time looks up the formatter, which causes it to loop back on itself.
If you specify a format parameter the problem no longer occurs:
This is due to the different code path that handles the format.
We also need to consider how to handle this in the generic case. Consider what happens if a format specifier is declared on
string
.The text was updated successfully, but these errors were encountered: