public void Demo() { String filePath = Directory.GetCurrentDirectory() + @"sample.yaml"; YamlInterpreter y = new YamlInterpreter(filePath); y.modify("item1", "567890"); y.save(); }
static void Main(string[] args) { YamlInterpreter y = new YamlInterpreter(); y.Demo(); }