How could the return value captured on Thread.
for ex.
How this method could be run by thread, and the return value captured.
Is it possible? If not why?
What is the reason behind it?
for ex.
Code:
private string Method(int a) { string str = a.ToString(); }
Is it possible? If not why?
What is the reason behind it?
Comment