1
我使用Properties.Settings保存用戶設置。從文件路徑中刪除版本號
Properties.Settings.Default.key = "value";
Properties.Settings.Default.save();
,這裏是保存的文件:
C:\Users\Me\AppData\Local\Me\MyCompany\0.0.1\user.config
如何防止版本號爲路徑,這樣呢?
C:\Users\Me\AppData\Local\Me\MyCompany\user.config
你可以寫你自己的設置提供。一些信息在這裏:http://www.sellsbrothers.com/writing/dotnet2customsettingsprovider.htm –