Advertisement
Guest User

Untitled

a guest
Aug 18th, 2019
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. public class PipelineStepEventTyped<T>
  2. {
  3. private T _value;
  4.  
  5. public void Write(T value) => _value = value;
  6.  
  7. public T Read() => _value;
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement