blah blah blah is here! blah blah » Close

2
votes
1 answers

style and efficiency question: arrays versus List<generic>

I find that I practically never use arrays anymore because of the potential waste of memory from having to declare arrays more than large enough. Another reason is because arrays look old fashioned to me. List<> seems to have largel ...

0
votes
2 answers

style question: String versus string, null versus double quote double quote

Question: If I use string should I compare it to null or ""? Does the answer change if I use String?

0
votes
2 answers

style question

Should I qualify with "private" even though methods are private by default?

Feedback