Пример #1
0
        public void Demo()
        {
            String          filePath = Directory.GetCurrentDirectory() + @"sample.yaml";
            YamlInterpreter y        = new YamlInterpreter(filePath);

            y.modify("item1", "567890");
            y.save();
        }
Пример #2
0
        static void Main(string[] args)
        {
            YamlInterpreter y = new YamlInterpreter();

            y.Demo();
        }