Debugging in Windows.Forms 2.0
Is there a way that I can have a key/value in a config file scope set so that one gets used over the other depending on if I'm debugging the application or not?
For Example:
<appSettings>
<add key="Key1" Value="SomeLocalVariable" /> <-- Use Debug
<add key="Key1" value="SomeRemoteVariable" /> <-- Use Production
</appSettings>
Thanks, db
|