c# - Why does .NET use int instead of uint in certain classes? -


i come across code uses int things .count, etc, in framework classes, instead of uint.

what's reason this?

uint32 not cls compliant might not available in languages target common language specification. int32 cls compliant , therefore guaranteed exist in languages.


Comments