Having a separate helper assembly containing only P/Invoke declarations for legacy 3rd party components, I wonder which of these two ways is The Better One⢠if the assembly must be marked CLS compliant:
- Use
Int32in a public P/Invoke declaration where the unmanaged declaration hasunsigned int. - Use
UInt32in an internal P/Invoke declaration where the unmanaged declaration hasunsigned int, and wrap it in a public method that takes anInt32and converts it toUInt32when calling the internal method.
What are the up- and downsides of these?