Task.Delay uses System.Threading.Timer internally. Main question is System.Threading.Timer non-blocking for my application? If I make:
await Task.Delay(15)
Does code bellow utilize threads for 15ms? Or will it use OS to make callback. Where to find information about this?