In a C# Winforms-App I have several user settings stored.
Is there an easy way to clear those settings each time I start debugging the project from Visual Studio 200
Adding to the above answers, here a copy-paste solution that works for most settings:
rmdir /q /s %localappdata%\[company name]\[AppName]
Note that for most cases it's best to delete everything under %localappdata%[company name]. Check the app data stored there and choose what's best for you.