char[] and byte[] to string

O

Ohad

Hi,

I have (in c#):

byte b = new byte[12];
char c = new char[12];
string s;

How do I make s contain the data in b and c?
Please cc to my mailbox: (e-mail address removed)

Thanks a lot,
Ohad.
 
M

Mattias Sjögren

byte b = new byte[12];
char c = new char[12];
string s;

How do I make s contain the data in b and c?

s = new string(c);

For b, use the appropriate Encoding class from the System.Text
namespace.



Mattias
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,773
Messages
2,569,594
Members
45,119
Latest member
IrmaNorcro
Top