tags:

views:

222

answers:

1

Hello everyone,

Should MSMQ be installed through Add/Remove programs in control panel if we use MSMQ in C#?

Thanks

+4  A: 

Yes, in order to use the MSMQ libraries in C# you'll need to have it installed on the machine running the code.

If you're interested in getting it installed with your setup project, check out this question.

Adam Robinson