Patrick Borgogno
Patrick Borgogno
  • Видео 6
  • Просмотров 1 151
Why you can't use await inside a lock (C#/.NET)
Locking ensures, that only one thread can execute some code at a time. However, as soon as you use await, you can't use "lock" anymore. Why is that and what can you use instead?
Просмотров: 404

Видео

What is Cache Stampede?
Просмотров 1254 месяца назад
In this video we explore the cache stampede problem that can arise when cache entries get stale and multiple requests come in at the same time.
How big can a BigInteger get? (C#/.NET)
Просмотров 3664 месяца назад
Let's have a look into BigInteger. How does its size compare to common data types? How does it store the numbers?
Not Every Catch is Equal (C#/.NET)
Просмотров 875 месяцев назад
For some time now we can use exception filters. However they are not exactly equal to a normal exception block with an if-statement. In this video we are exploring one major difference.
How to cancel work with CancellationTokens (C#/.NET)
Просмотров 785 месяцев назад
If you ever wondered what these CancellationTokens in some method signatures are, look no further. In this video I will explain, how you can use them to cancel ongoing work.
Can you SHARE access to a file? (C#/.NET)
Просмотров 916 месяцев назад
In this video we have a look into the FileStream class and more specifically the FileShare option.