Thursday, October 8, 2015

Log4net.dll to Log Information

Log4net.dll to Log Information Hi GeeksMy new article states how to use the Log4net's external Log4net.dll to log information that might be beneficial for error tracking and other tracing issues.There are a few things that you need to consider during the implementation. I've also attached the code segment to understand the code better and in a more...

Wednesday, October 7, 2015

Modify the value of readonly varibale

Modify the value of readonly varibale The readonly keyword is a modifier that you can use on fields. When a field declaration includes a readonly modifier, assignments to the fields introduced by the declaration can only occur as part of the declaration or in a constructor in the same class. This is how we declare a readonly variable: 1: public...