I have two assemblies in my application. MyApplication.BO
and MyApplication.GUI
.
I have configured property-settings for my BO assembly.
Now when I am trying to compile the following code:
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 is giving me the following compilation error:
Error 1 Property or indexer MyApplication.BO.Properties.Settings.FullNameOfTheUser cannot be assigned to -- it is read only F:CSMyApplicationMyApplication.BOMyApplicationInfo.cs 57 17 MyApplication.BO
What is wrong with my approach?