Пример #1
0
        private static void AddVariable()
        {
            Application.Log(Messages.EnterKey);
            string key = Console.ReadLine();

            Application.Log(Messages.EnterValue);
            string value = Console.ReadLine();

            Application.Log(Variables.Write(key, value) ? Messages.VariableSaved : Messages.VariableNotSaved);
        }