March 2016
Intermediate to advanced
550 pages
10h 57m
English
Task or a Task<T>?Async, for example, OpenAsync for a method named Open.
await keyword inside a method, which keyword must be applied to the method declaration?The async keyword must be applied to the method declaration.
Call the Task.Factory.StartNew method with the TaskCreationOptions.AttachToParent option to create a child task.
lock keyword?The lock keyword does not allow you to specify a timeout; this can cause deadlocks. Use Monitor.Enter with a TimeSpan and Monitor.Exit instead.
Interlocked class?If you have integers ...
Read now
Unlock full access