Does .NET 3.5 C# allow us to include a variable within a string variable without having to use the + concatenator (or string.Format(), for that matter).
For example (In
Since C# 6.0 you can write string "The title is \{title}" which does exactly what you need.
"The title is \{title}"