I have this situation:
string h = "#u00d8";
h = h.Replace("#"," \\"); // =h = @"\u00d8"
WriteLine(h); //="\u00d8"
But I wishes to have this situation:
h = "\u00d8";
WriteLine(h); //="Ø"
How can I convert a qouted string to a string object so that it can be
parsed by the .Net framework when I call WriteLine (or something...