views:

486

answers:

1

I was curious how the following line works for configuring log4net in an assembly:

[assembly: log4net.Config.XmlConfigurator(Watch=true)]

I'm guessing this gets called sometime before the runtime invokes "main()" but when does this occur, and what are the implications? Are there other frameworks/libraries that use this assembly attribute for loading an initial context like this? Are there any advantages/disadvantages for doing something like this, as opposed to calling a "Configure" method in main()?

+1  A: 

The advantages of doing this are that the code is initialised in advance of your main code and in advance of the static initialisation.

This means that you can, for example, use log4net logging within a static-constructor. Without a way to pre-initialise log4net, in the static constructor you'd never know for certain that the code has been initialised correctly.

This area doesn't seem to be very well documented (or easy to find anyway) but I assume that the initialisation of called methods is performed at Assembly-load time.

Ray Hayes