36
votes
Why use boolean instead of char?
It is a question of memory alignment. 4-byte variables work faster than 2-byte ones. This is the reason why you should use int instead of byte or short for counters and the like.
You shou …
1
vote
7
votes
Can object constructor return a null?
In my opinion, the else statement suggests that the previous developers didn't know their C#. A constructor always returns a constructed object or throws an exception.
In the very old time …
