StackExchange/Code Reviewで見かけた質問とステキな回答。 質問:What are the best practices with multithreading in C#? (Code ReviewはQ&Aサイトというより、名前の通りコードレビュー依頼が主目的) 回答: Rather than reviewing your specific code -- which at first glance seems very, very buggy -- let me answer your question directly: Don't. Multithreading is a bad idea. Programs are hard enough to understand already with a single point of control flow in

