Hi,
In a sample use of the BeginInvoke thread pool method:
...
Func<string, int> method = someWorkMethod;
IAsyncResult cookie = method.BeginInvoke("test", ...
One of the expected parameters (the last one), in BeginInvoke is:
object @object
What does the @ signify ?
Thanks,
Scott