c# - Programmatically change Visual Studio Options -


how programmatically set , unset visual studio options?

enter image description here

i have done research , troubleshooting , found not possible, ironically now find myself needing functionality.

here question answered specifying why not possible programmitically click buttons in vs options dialog: programmatically reset visualstudio shortcuts.

i dont need click button, need change boolean setting per screenshot.

please... if have undocumented methods.. please me. improve every developers life, particularly newbies.

just use:

dte.properties["debugging", "general"].item("enableexceptionassistant").value=false; 

most of options can retrieved , set way. see also:

options page, debugging node properties

howto: getting properties dte.properties collection of visual studio .net.


Comments

Popular posts from this blog

asynchronous - C# WinSCP .NET assembly: How to upload multiple files asynchronously -

aws api gateway - SerializationException in posting new Records via Dynamodb Proxy Service in API -

asp.net - Problems sending emails from forum -