.netcore logger supports a text templating feature that is different than string interpolation.
For example, the following call:
_logger.LogInformation("About page visited at {DT}",DateTime.UtcNow.ToLongTimeString());
... replaces {DT}
with a date.
Is this templating capability a special feature in the .netcore logging or a new C# feature?
If it is only implemented in .netcore logging, can I re-use it in my code string processing operation?
Update 1