Search Results

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

Why in .NET System.Boolean takes 4 byte?

Duplicated here. …
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 …