I'm trying to use an ArrayBlockingQueue but I cant seem to get the syntax right and I dont know what exactly I'm supposed to import to use it. I tried this:
BlockingQueue<int> Queue = new ArrayBlockingQueue<int>(100);
for the declaration but it says that there is an error with int "Dimensions expected after this token" for both of the ints. I feel like this is probably simple to solve, I may have just not imported to correct thing or my syntax is off, so any help is appreciated. Thanks