Program.cs

31 lines | 631 B Blame History Raw Download
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
            });

        }
    }
}