比如下面的记录日志的代码,如果用 C# 11 的新特性 raw string literals ,该怎么写?
_logger.LogError(@$"
Fallback to use Newtonsoft.Json for {nameof(OutOfMemoryException)}.
Content.Length: {{contentLength}}",
checkee.Content.Length);
解决了
_logger.LogError($$"""
Fallback to use Newtonsoft.Json for {{nameof(OutOfMemoryException)}}.
Content.Length: {contentLength}
""",
checkee.Content.Length);