Is it possible to get the return Address of a thread, This is the scenario. I have a main thread, from the main thread am calling a functionA synchrously..I do some processing on the input parameter the I call one more functionB asynchrnously. I process something on the input parameter & need to return the value then functionA does something on the value returned from the FunctionB. Its something like below
Main --> FuncA +1 ==> FuncB +2
<==== +3 <====
I have achieved this on Threadpool using Action/delegate, Interface, Taskparallel library, Async Result/beginInvoke EndInvoke. I dont want to use that. It should have only 3 Function-No blocking at any point. Is it possible by another means in .Net??