using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using ConfigurationTool;
namespace Console
{
public class ConfigData
{
public string Name { set; get; } = "n";
public int ID { set; get; } = 23;
}
class Program
{
static void Main(string[] args)
{
var conf = new ConfigurationManager<ConfigData>(new ConfigParams()
{
ConfigFile = "Config.xml",
Format = EnumFormat.XML,
UseApplicationPathPrefix = true
});
}
}
}