को सहेजने के लिए मेरे आवेदन में दो असेंबली हैं। MyApplication.BO
और MyApplication.GUI
।एप्लिकेशन सेटिंग्स
मैंने अपने बीओ असेंबली के लिए संपत्ति-सेटिंग्स कॉन्फ़िगर की है।
Error 1 Property or indexer 'MyApplication.BO.Properties.Settings.FullNameOfTheUser' cannot be assigned to -- it is read only F:\CS\MyApplication\MyApplication.BO\MyApplicationInfo.cs 57 17 MyApplication.BO
मेरे दृष्टिकोण के साथ गलत है:
public class MyApplicationInfo
{
private string _nameOfTheUser;
public string FullNameOfTheUser
{
get { return _nameOfTheUser; }
set { _nameOfTheUser = value; }
}
public void Save()
{
try
{
MyApplication.BO.Properties.Settings.Default.FullNameOfTheUser = this.FullNameOfTheUser;
MyApplication.BO.Properties.Settings.Default.Save();
}
catch (Exception ex)
{
throw ex;
}
}
}
VS2005 मेरा पीछा संकलन त्रुटि दे रहा है:
अब जब मैं निम्नलिखित कोड संकलन करने की कोशिश कर रहा हूँ?