Multithreading and Synchronization in C#

Поделиться
HTML-код
  • Опубликовано: 11 сен 2024

Комментарии • 2

  • @YasSin
    @YasSin Месяц назад +1

    Wonderful. I appreciate.

  • @elijahshadbolt7334
    @elijahshadbolt7334 Месяц назад +3

    This video is just the lid of a can full of worms we call threads. Good basic video, but be warned that using multiple threads, especially using other library packages and frameworks, is bound to cause more than a few headaches. System.Collections.Concurrent.ConcurrentQueue is great, and the lock statement is ok, but the rest are a confusing mess of lackluster documentation. Ten years of C# has taught me to not even attempt to optimise multithreaded data transfer; just use the safe data structures other engineers have spent years on. Good luck.