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

php - trouble displaying mysqli database results in correct order -

depending on nth recurrence of job in control M -

sql server - Cannot query correctly (MSSQL - PHP - JSON) -