Is there any automated tool to check C# .NET code for thread safety?
p.s. It doesn't have to be perfect, but it should check for the obvious things that can be checked at compile time.
Is there any automated tool to check C# .NET code for thread safety?
p.s. It doesn't have to be perfect, but it should 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.