18 lines
504 B
C#
18 lines
504 B
C#
|
|
namespace Szmedi.RvKits.Assists
|
|||
|
|
{
|
|||
|
|
public class AppConfigAssists
|
|||
|
|
{
|
|||
|
|
public object GetValue(string name)
|
|||
|
|
{
|
|||
|
|
var property = Properties.Settings.Default.Properties[name];
|
|||
|
|
return property.DefaultValue;
|
|||
|
|
}
|
|||
|
|
public void SetValue(string name, object value)
|
|||
|
|
{
|
|||
|
|
var property = Properties.Settings.Default.Properties[name];
|
|||
|
|
property.DefaultValue = value;
|
|||
|
|
Properties.Settings.Default.Save();
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|