How to use #if directives in C#(3.0)

Posted by Newbie on Stack Overflow See other posts from Stack Overflow or by Newbie
Published on 2010-04-21T06:17:39Z Indexed on 2010/04/21 6:23 UTC
Read the original article Hit count: 118

Filed under:

I just found two piece of code

#if CONSOLE // defined by the console version using 
ournamespace.FactoryInitializer;
#endif

and

#if _NET_1_1
                    log4net.Config.DOMConfigurator.ConfigureAndWatch(new System.IO.FileInfo(s) );
#else
                    log4net.Config.XmlConfigurator.ConfigureAndWatch(new System.IO.FileInfo(s) );
#endif

Can any one please tell me with a running sample( please provide a simple one) what is the significance of those code snippets and when and how to use those?

Thanks.

© Stack Overflow or respective owner

Related posts about c#3.0