0
votes
What is the most readable use of String.Format for long strings with many parameters?
Assuming you can use LINQ, you can shove your arguments into a Dictionary<string, string>, then join the arguments together:
Dictionary<string, string> args …
