Skip to content

Instantly share code, notes, and snippets.

@JayBazuzi
Created February 10, 2019 07:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JayBazuzi/51bc703d094e674038bf7c4b03e9d145 to your computer and use it in GitHub Desktop.
Save JayBazuzi/51bc703d094e674038bf7c4b03e9d145 to your computer and use it in GitHub Desktop.
var pipeline = new Pipeline(CharacterFile.From)
{
new ResultCollector<CharacterFile>(),
new Pipeline(ConfigFile.Matching)
{
new ResultCollector<ConfigFile>(),
},
new Pipeline(_ => _.ParseCards())
{
new ResultCollector<List<CardData>>(),
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment