using System; using System.Collections.Generic; using System.Text; using System.Text.RegularExpressions; using ChadSoft; namespace ChadSoft.Utils.Configy.Console { class Program { internal sealed class ConfigySettings : CommandLineParameters { #region Settings Properties public string MasterFile { get { return this["MasterFile"]; } set { this["MasterFile"] = value; } } public string OverrideFile { get { return this["OverrideFile"]; } set { this["OverrideFile"] = value; } } #endregion #region Constructor public ConfigySettings(string[] args) : base(args) { } #endregion } static void Main(string[] args) { ConfigySettings settings = new ConfigySettings(args); string masterFile = settings.MasterFile; string overrideFile = settings.OverrideFile; } } }