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
The @ is an escape symbol that lets you use keywords as symbol names. For instance, you couldn’t normally do:
…because object is a keyword, but you can do:
…etc