Automated .NET tool to check for thread safety?
Is there any automated tool to check C# .NET code for thread safety?
p.s. It doesn't have to be perfect, but it shou开发者_如何学JAVAld check for the obvious things that can be checked at compile time.
The only thing I've seen is TypeMock's racer. It isn't compile time, but it can make some thread bugs (like deadlocking) possible to test.
精彩评论