My case is:

I'm working a .net library which wraps an existing C++ library. One method in C++ returns an unsigned int and I also want to return the .net corresponding method with an System.Uint32.

Will this cause some issue for languages which don't support unsigned data types?

link|improve this question

43% accept rate
feedback

1 Answer

Most probably there will be issues (especially when you return numbers which are greater than 2^31), but according to this SO post

Are there languages compatible with .NET that don't support unsigned types?

it seems there are not many .NET languages (or, no important ones, though importance may be subjective) which don't support unsigned data types.

link|improve this answer
Currently, I don't know which language doesn't support unsigned. For unsigned data like 2^31, can we consume it like System.Int64 intData = getUnsignedData() ? – softempire Sep 6 '11 at 7:48
@softempire: I would not expect that working, you will probably get a negative return value (but I cannot verify this since I don't have a .NET language at hand with no unsigned types). But isn't that discussion purely theoretical? – Doc Brown Sep 6 '11 at 9:10
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.