Why are unsigned int's not CLS compliant. I start to think type-specification is just for performance, and not for correctness.
|
|
Not all languages have the concept of unsigned ints. For example VB 6 had no concept of unsigned ints which I suspect drove the decision of the designers of VB7/7.1 not to implement as well (it's implemented now in VB8). To quote:
Update: I did wonder about this some years back, and whilst I can't see why a UInt wouldn't be type safety verifiable, I guess the CLS guys had to have a cut off point somewhere as to what would be the baseline minimum number of value types supported. Also when you think about the longer term where more and more languages are being ported to the CLR why force them to implement unsigned ints to gain CLS compliance if there is absolutely no concept, ever? |
|||||||
|
|
Unsigned int's don't gain you that much in real life, however having more than 1 type of int gives you pain, so a lot of languages only have singed ints. CLS compliant is aimed at allowing a class to be made use of from lots of languages… |
|||||||||||
|
|
Unsigned integers are not CLS compliant because they're not interoperable between certain languages. |
|||
|
|