Tagged Questions
The icomparablet tag has no wiki summary.
4
votes
4answers
1k views
C# boxing enum error with generics
I don't understand what is going on here...
I've got the following error:
The type 'TestApp.TestVal' cannot be used as type parameter 'T' in the generic type or method 'TestApp.SomeClass<T>'. ...
2
votes
2answers
269 views
FxCop and IComparable/IComparable<T>
I'm currently investigating the use of FxCop with one of our existing projects and am getting an odd result.
The output displays a small number of breaches of the 'Override methods on comparable ...
0
votes
2answers
106 views
Order list<T> on a numerical base
i am using this code to order a list descending on numerical base
ItemsList.OrderByDescending(x => x.Views, new IntComparer());
public class IntComparer : IComparer<long>
{
...