the toArray and toList methods on sequences does not show up with intellisense
var foo = new int [] {1, 2, 3, 4, 5};
foo.Where(x => x % 2 == 0).ToArray();
foo.ToList();
the toArray and toList methods on sequences does not show up with intellisense
var foo = new int [] {1, 2, 3, 4, 5};
foo.Where(x => x % 2 == 0).ToArray();
foo.ToList();
intellisense issue
B o g d a n
I have noticed that IntelliSense is kinda broken in a few ways with the current LINQ preview...
The one I hate the most, when typing:
class MyClass : MyRoot
IntelliSense used to prompt when you entered the M in MyRoot, but does not do so with LINQ in the IDE
Jeries Shahin
-- Cyrus (http://blogs.msdn.com/cyrusn)
Bill S
-- Cyrus (http://blogs.msdn.com/cyrusn)