public
Description: YaYAML: Yet Another YAML .Net parser
Homepage:
Clone URL: git://github.com/jagregory/yayaml.git
yayaml /
name age message
file .gitignore Tue Oct 28 12:04:26 -0700 2008 Started setting up the project [jagregory]
file LICENSE.txt Tue Oct 28 15:00:56 -0700 2008 Stuck a license on [jagregory]
file README.textile Tue Oct 28 14:51:48 -0700 2008 Readme tinkering [jagregory]
directory RebuildParser/ Wed Oct 29 17:10:22 -0700 2008 Added failing unit test for map of seq of maps [jagregory]
directory Tests/ Sun Nov 02 18:27:04 -0800 2008 Updated the object-model a bit so it can be use... [jagregory]
file YaYAML.sln Tue Oct 28 12:44:02 -0700 2008 Added unit test project. Got simple lists parsing. [jagregory]
directory YaYAML/ Sun Nov 02 18:27:04 -0800 2008 Updated the object-model a bit so it can be use... [jagregory]
directory libs/ Tue Oct 28 12:04:26 -0700 2008 Started setting up the project [jagregory]
README.textile

YaYAML

Yet another YAML parser for .Net

What is YaYAML?

A YAML parser for .Net. It’s currently very under-featured, and is really just handles parsing of hashes and lists.

Why have you bothered with this?

I needed a simple file format for hash data, and I didn’t want to use XML. I could’ve implemented my own simple format, but I thought YAML would work nicely.

How do I use it?

  1. Download the source and build it
  2. Reference it
  3. Use as so:
var yaml = new Yaml();
var document = yaml.ParseFile("my file name.yaml");