0

I am trying to add using System.Collections.Concurrent and it is not working.

The type or namespace name 'Concurrent' does not exist in the namespace 'System.Collections' (are you missing an assembly reference?)

meme
  • 597
  • 1
  • 10
  • 23

1 Answers1

3

Your ConcurrentQueue is only available from .NET 4. Upgrade your project to at least .NET 4.0.

Patrick Hofman
  • 153,850
  • 22
  • 249
  • 325