Quiz Yourself: Multithreading in .NET
Test your understanding of multithreading concepts, including thread management, synchronization primitives, the Thread Pool, and parallel loops.
We'll cover the following...
We'll cover the following...
Technical Quiz
1.
Which of the following is a valid method signature for an asynchronous method that returns a string?
A.
public string GetDataAsync()
B.
public async string GetDataAsync()
C.
public async Task<string> GetDataAsync()
D.
public Task<async string> GetDataAsync()
1 / 14