16
votes
9answers
2k views
When to use IList and when to use List
I know that IList is the interface and List is the concrete type but I still don't know when to use each one. What I'm doing now is if I don't need the Sort or FindAll methods I use the interface. …
2
votes
4answers
769 views
Do you have any tips to improve resharper and/or visual studio performance ?
I'm using visual studio 2008 and resharper 4 and it's kind of slow, my machine has 2gb of ram, dual core processor and a 7200 rpm hard disk. I know more ram and a faster hard disk could improve per …
18
votes
Hidden Features of C#?
Not hidden, but I think that a lot of developers are not using the HasValue and Value properties on the nullable types.
int? x = null;
int y;
if (x.HasValue) …
