I\'m trying to familiarize myself with c#\'s new await/async keywords, and I\'ve found several aspects which I can\'t quite understand.
Let\'s start with ra
I recommend you read my async intro.
will this work as expected all the time (e.g. write to the file 12345..... and not 13254 or something)?
No. You need to await the calls to WriteAsync.
How much of an async function is executed before it releases to the caller function?
Until it awaits an operation that is not already completed.
Will Thread.Sleep block the whole thread in which it is executed or just the async function?
Thread.Sleep - and all other blocking methods - will block the async method and the thread that is executing it.
As a general rule, do not use any blocking methods within an async method.
What if I use semaphore.Wait() in one of the async functions and it will expect for the semaphore to be released by an other async function. Will this behave as it would with threads, or will it cause deadlock?
It totally depends on your contexts. Wait is a blocking method, so if the "other" async method requires the context held by the blocked method, then you will deadlock.
Note that SemaphoreSlim is async-friendly; you can use WaitAsync instead of Wait.
await does not work outside of async functions. Why?
Because the async keyword enables the await keyword. This was done to minimize the impact of new keywords on the C# language and for code readability.