This commit is contained in:
2011-04-06 14:22:49 +00:00
parent 0acf7cb14a
commit 438fed8c7d
2 changed files with 199 additions and 9 deletions

View File

@@ -110,10 +110,14 @@ namespace VEPROMS.CSLA.Library
//{
// _Xp = new XMLProperties();
//}
internal string GetValue(string group, string item)
public string GetValue(string group, string item)
{
return _Xp[group, item];
}
public void SetValue(string group, string item, string newvalue)
{
_Xp[group, item] = newvalue;
}
#endregion
#region Local Properties
[Category("General")]