Im brand new to TPL dataflow so forgive me if this is a simple question.
I have an input buffer block that takes a base class. How can I branch from there to a block based on the derived type? So for example:
var inputBlock = new BufferBlock<EventBase>();
//if EventBase is Meeting then go to block X
//if EventBase is Appointment the go to block Y
Thanks!
EventBase
, through the use of polymorphism. – Damsel