Need .NET code to execute only when in debug configuration

前端 未结 8 928
闹比i
闹比i 2021-01-30 10:38

I have some code that access an API out on the web. One of the API\'s parameters allows me to let them know that I am testing.

I would like to only set this parameter in

8条回答
  •  日久生厌
    2021-01-30 11:09

    I had this same problem and the solution I went with is using:

    if (System.Diagnostics.Debugger.IsAttached)
    {
        // Code here
    }
    

    This means that technically in production you can attach a debugger and get that piece of code to run.

提交回复
热议问题