In examples on the web, I see that there is a method Dataflow.TransformBlock.Post()
, yet I can't get it to compile:
Dim q As New Dataflow.TransformBlock(Of Integer, Integer)(Function(x As Integer) As Integer
Return x
End Function)
q.post(5)
The error is:
'post' is not a member of 'System.Threading.Tasks.Dataflow.TransformBlock(Of Integer, Integer)'.