Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
2answers
2k views

LinQ distinct with custom comparer leaves duplicates

I've got the following classes: public class SupplierCategory : IEquatable<SupplierCategory> { public string Name { get; set; } public string Parent { get; set; } #region ...
2
votes
4answers
98 views

Should a custom comparer for strings allow for null values

I'm looking at someone elses code for a custom comparer that compares strings. I'm noticing that it will fall over if at least one of the string parameters is null. The compare returns -1, 0 or 1 ...
0
votes
1answer
2k views

iPhone contacts app styled indexed table view implementation

My Requirement: I have this straight forward requirement of listing names of people in alphabetical order in a Indexed table view with index titles being the starting letter of alphabets (additionally ...
0
votes
7answers
228 views

Custom sorting problem, always force 0 to back of ascending order?

Premise This problem has a known solution (shown below actually), I'm just wondering if anyone has a more elegant algorithm or any other ideas/suggestions on how to make this more readable, ...