I have an NServiceBus app which receives a particular message when a large database update is required. While this update is happening, I want to either somehow ignore all incoming messages of this type. What is the best way of doing it? Should I put a lock
statement in there?
What is the use of default keyword in C#? Is it introduced in C# 3.0 ?