vote up 1 vote down star

I have C# wrapper of a C Library. It has a method that returns an sbyte that is supposed to represent a char. I can use Convert.ToChar but this is not CLS-compliant. What is the best practice for converting this sbyte to a char compliantly?

flag
Is the 'char' a native or managed type? Also, what is the purpose of the conversion - is it just a value or do you care that it is validly converted to the correct character for use in a string? – Jeff Yates Oct 21 '08 at 16:35

2 Answers

vote up 3 vote down

System.Buffer.BlockCopy can be used to convert sbyte arrays to byte arrays. Then, you can use the System.Text.ASCIIEncoding to do the conversion of the byte array to ASCII text.

link|flag
vote up 2 vote down

Now that you changed the question :) Sbyte is not cls compliant to begin with. Make the wrapper use byte.

link|flag

Your Answer

Get an OpenID
or

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