Skip to content

Instantly share code, notes, and snippets.

@ocoanet
Created August 6, 2019 11:43
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 ocoanet/827ca3c6bd4ec57e83f5692791f9f361 to your computer and use it in GitHub Desktop.
Save ocoanet/827ca3c6bd4ec57e83f5692791f9f361 to your computer and use it in GitHub Desktop.
public class PipelineStepEventTyped<T>
{
private T _value;
public void Write(T value) => _value = value;
public T Read() => _value;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment