I\'m studying C# by following the guides in MSDN.
Now, I just tried the Example 1 (here is the link to MSDN), and I\'ve encountered an i
Here is a way to do it without involving Console:
Console
var endlessTask = new TaskCompletionSource().Task; endlessTask.Wait();