Skip to content

Instantly share code, notes, and snippets.

@carmeleve
Last active November 13, 2018 11:36
Show Gist options
  • Save carmeleve/7b5b2f2ddeed3d7d9a5e167d439dfc68 to your computer and use it in GitHub Desktop.
Save carmeleve/7b5b2f2ddeed3d7d9a5e167d439dfc68 to your computer and use it in GitHub Desktop.
// Seperates each list it is passed into its individual elements and adds each result to the output
var separateNumbers = new TransformManyBlock<IList<int>, int>(
l => l
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment