Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is unsafe normal in .net C#?

I need do create a new instance of String from the array of sbytes (sbyte[]). For that I need to convert sbyte[] into sbyte*

It is possible only using unsafe keyword. is that okay or is there any other ways to create a String from array of sbytes?

like image 614
Sergey Avatar asked Feb 24 '23 23:02

Sergey


2 Answers

First: How to convert a sbyte[] to byte[] in C#?

sbyte[] signed = { -2, -1, 0, 1, 2 };
byte[] unsigned = (byte[]) (Array)signed;

Then:

string yourstring = UTF8Encoding.UTF8.GetString(unsigned);
like image 64
Steve Avatar answered Feb 26 '23 15:02

Steve


Why are you using sbyte?

Encoding.Default.GetString() (and any other encoding) takes a byte[] Array as argument, so you could convert the sbyte[] Array using LINQ if all values are non-negative: array.Cast<byte>().ToArray().

like image 30
Oliver Hanappi Avatar answered Feb 26 '23 16:02

Oliver Hanappi