Hi,

On Wed, Dec 15, 2010 at 11:02 PM, Greg Young <[email protected]> wrote:
> Is it safe to load assemblies in a parallel fashion with cecil?

Cecil has pretty much the same guideline as most of the .net framework
: the static methods are thread safe, the instance methods may not be.

What you have to avoid, is to have multiple threads reading data and
or code from the same module. People usually launch one module
treatment per thread.

Jb

-- 
--
mono-cecil

Reply via email to