3
votes
Why should I learn C#?
There is a nice article on the subject here. And it starts comparing C# and Java.
…
1
vote
How does const correctness help write better programs?
Just enlisting the compiler's help when writing code would be enough for me to advocate const-correctness. But today there is an additional advantage: multi-threading code is generally easier to w …
3
votes
Why is this cast not possible?
The problem is that a cast does not work on the generic arguments, but on the class as a whole. Document inherits from Item, true, but IFolderOrItem< Document> does not inherit from IFolderOrIt …
