Sorry, but there are no more tags available to filter with.
-
hannes: Here is a nice use of Union which cuts out a bit of code. The scenario is that default values need to be added to a list where no value has been defined (in this example for each FeeID). IEnumerable<Fee> feeOverrides; // set to some list IEnumerable<Fee> feeDefaults; // set to some...
-
An example of what you can do with LINQ(code snippets): SortedDictionary<int, Customer> customers = new SortedDictionary<int,Customer> { {1,new Customer{Name="John",Age=13,Gender="M"}}, {2,new Customer{Name="Mary",Age=25,Gender="F"}}, {3,new Customer...