I'm developing a .NET wrapper around a C++ library that uses size_t (which is unsigned) for indices, and someone pointed out to me that most .NET libraries use signed integers instead. I was wondering if there were any good reasons for this and if i should make my wrapper accept signed indices or continue to use unsigned indices.
Many thanks!
- Kevin Hall
.NET Development25
|