1
vote
Can you do LINQ-like queries in a language like Python or Boo?
Boo supports list generator expressions using the same syntax as python. For more information on that, check out the Boo documentation on …
0
votes
Random array using LINQ and C#
Using the C5 Generic Collection Library, you could just use the builtin Shuffle() method:
IList<int> nu …
0
votes
Custom Collection extends List<T> Add method
Your best bet is to set up and configure an ORM (Object-relational mapping), such as NHibernate, that will manage this for you. In effec …
