en
Wouter de Kort

Exam Ref 70–483: Programming in C#

Avise-me quando o livro for adicionado
Para ler este livro carregue o arquivo EPUB ou FB2 no Bookmate. Como carrego um livro?
Este livro está indisponível
580 páginas impressas
Já leu? O que achou?
👍👎

Citações

  • Mike Petrov-Vodkinfez uma citaçãohá 8 anos
    The SynchronizationContext abstracts the way these different applications work and makes sure that you end up on the right thread when you need to update something on the UI or process a web request
  • Mike Petrov-Vodkinfez uma citaçãohá 8 anos
    public Task SleepAsyncA(int millisecondsTimeout)
    {
    return Task.Run(() => Thread.Sleep(millisecondsTimeout));
    }
    public Task SleepAsyncB(int millisecondsTimeout)
    {
    TaskCompletionSource<bool> tcs = null;
    var t = new Timer(delegate { tcs.TrySetResult(true); }, null, -1, -1);
    tcs = new TaskCompletionSource<bool>(t);
    t.Change(millisecondsTimeout, -1);
    return tcs.Task;
    }
  • Mike Petrov-Vodkinfez uma citaçãohá 8 anos
    You should use the Parallel class only when your code doesn’t have to be executed sequentially

Nas estantes

fb2epub
Arraste e solte seus arquivos (não mais do que 5 por vez)