Quote Originally Posted by jmcilhinney View Post
That said, there is a magic string thing now in VB 2015. It's called String Interpolation. Now you can create a String even more easily than with String.Format:
vb.net Code:
  1. Dim s As String = $"L is {l} and M is {m} and N is {n}."
Heh I upgraded to 2015 a few months ago and I didn't know about that yet. That is nifty. Guess I should read the documentation more often.