I have a VS template with something like
string mypath = "C:\\custom\\file.jpg";
I would like to make C: \ custom \ part with the template substitution parameter $ userpath $. Is there a way to avoid double slashes?
I would like to write:
string mypath = SOMETHING("C:\custom\file.jpg")
which does not receive the escape code with \ c and \ f and forms a valid path. Is it possible?
source share