Please excuse the newbie question but I was wondering if I used Linq in my XNA application, would this still work on the Xbox 360?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Yes the Xna framework for Xbox 360 and Zune supports LINQ. (Look in |
|||
|
|
|
Yes it will work, but you should be aware that normal use of LINQ queries involves using lambdas which will generate gargabe pretty fast if you run your queries a lot. This means you could have issues in the Xbox360 as the GC is pretty simple there. |
|||
|
|