我有一個設置「Properties.Settings.Default.Password1」和「Properties.Settings.Default.Password2」的路徑。什麼類型的變量Properties.Settings.Default c#wpf
現在我想使用這些路徑之一。我使用下面的代碼:
If (certain condition)
{
kindOfVariable passwordPath = Properties.Settings.Default.Password1
}
else
{
kindOfVariable passwordPath = Properties.Settings.Default.Password2
}
嗯,我知道密碼是一個字符串,多數民衆贊成沒有問題,但我想要的路徑。
但是我必須使用什麼樣的變量?還是有另一種方法來做到這一點?
通常你會保存這樣的新值:
Properties.Settings.Default.passwordPath = "New Password";
Properties.Settings.Default.Save();
我想與路徑做是爲了給這條道路上的一個新的價值,因此,例如
passwordPath = "New Password";
Properties.Settings.Default.Save();
你能解釋我們更多關於你的意思是「路徑」嗎?儘管你已經編輯了你的問題,但沒有多大意義! – Coder323 2011-05-30 16:34:38