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. …
19
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) …
0
votes
C# String output: format or concat?
The first one (format) looks better to me. It's more readable and you are not creating extra temporary string objects.
…
0
votes
Converting vb.net to c# tips
Have you tried C-Sharpener For VB ?
http://www.elegancetech.com/csvb/csvb.aspx
…
