Const vs Readonly in C#

In short, when an expression references a constant, the value of constant is obtained at compile time only, it means all expressions replaced with constant value. But, If expression is referencing a Readonly field then the value of field is obtained at runtime. [More]

ToDo before going for interview

Whenever a software expert get interview call to demonstrate his technical skills or expertise, he goes through a mind making phase to crack the interview. The applied position could be anything from software programmer to technical lead. Architect level interviews are quite different and involves higher level of management too. [More]

Tips for making your CV impressive

Making a to-the-specific and to-the-point document (resume/CV) that represents you, is not so hard. Even it doesn't requires professional's touch too. Whenever you start writing your CV, read and read your materials with recruiter’s eyes. [More]

WCF service access permission to a role specific user group

WCF provides us the Role Based Authentication mechanism that can be used for setting service access permission for a specific group. To make it work, we need to do some settings in web.config file as well we need to decorate our those services on which we want to implement this access security. [More]