Should I use uint in C# for values that can't be negative?
- by Johannes Rössel
I have just tried implementing a class where numerous length/count properties, etc. are uint instead of int. However, while doing so I noticed that it's actually painful to do so, like as if no one actually wants to do that.
Nearly everything that hands out an integral type returns an int, therefore requiring casts in several points. I wanted to…