I have a rather large open source class that I need to convert from static to non-static.
The reason I need to do this is to make it thread safe; I want one copy of the class per thread.
In general, what are the recommended steps to convert a C# library from static to non-static?
s/static//g` ` – Dani Oct 6 '11 at 15:23