I have this code in my C# class.
#if DEBUG private const string BASE_URL = \"http://www.a.com/\"; #else private const string BASE_URL = \"h
If you are compiling with the DEBUG configuration, the code before the else line will get compiled while the other will not. If you compile in any other configuration, the second line will be compiled while the first will not.