Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

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 = "http://www.b.com//";
#endif

What I wanted to ask is when does the

#if DEBUG

path in the code get executed?

Does it get executed

  1. When I run up a debug session in Visual Studio?
  2. When I manually run the exe or dll in question from the debug folder?
  3. Any other circumstances I forgot to mention?
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
293 views
Welcome To Ask or Share your Answers For Others

1 Answer

#if DEBUG It's a preprocessor definition.

It compiles when you define DEBUG constant. And yes, it's default on Debug Build Configuration.

Visual Studio 2010 Project Properties: Visual Studio 2010 Project Properties

If Define DEBUG constant is checked VS will compile:

private const string BASE_URL = "http://www.a.com/";

Else (not checked) VS will compile:

private const string BASE_URL = "http://www.b.com//";

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...