Using VS 2008 and VAX 10.7.1912 the following code shows the wrong value for the DUMMY symbol:
using System;
using System.Text;
namespace ConsoleApplication9
{
class Program
{
private const string DUMMY = "A:\\\\A";
static void Main ( string[] args )
{
string s = DUMMY;
}
}
}
When you click the DUMMY symbol the value in the VAX Definitions dropdown (next to the Go to Implementation button) shows this:
private const string DUMMY = "A.A"