I cannot believe that we don't have have any dll that would bulk read all the messages from queue or atleast we can specify say 5000 messages at a time.
In the C# code(partially extracted code) below I am reading 1 message at a time. If I have 5000 messages in the queue I have to execute the code 5000 times. I want to read all 5000 messages at once an ...