Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a string that I need to convert to the equivalent array of bytes in .NET.

This ought to be easy but I am having a brain cramp.

share|improve this question

4 Answers

up vote 39 down vote accepted

You need to use an encoding to tell .NET what you expect as the output. For example, in UTF-16:

var result = System.Text.Encoding.Unicode.GetBytes(text);
share|improve this answer
3  
There are a lot more encodings in System.Text.Encoding than just Unicode: make sure you understand which one you need. – Joel Coehoorn Oct 27 '08 at 21:24
1  
Joel: Hence I wrote “for example”. ;-) But your comment is of course valid. – Konrad Rudolph Oct 27 '08 at 21:27
:) Trying to help show where the non-UTF16 encodings are- I probably could have worded it better. – Joel Coehoorn Oct 27 '08 at 21:42

First work out which encoding you want: you need to know a bit about Unicode first.

Next work out which System.Text.Encoding that corresponds to. My Core .NET refcard describes most of the common ones, and how to get an instance (e.g. by a static property of Encoding or by calling a Encoding.GetEncoding.

Finally, work out whether you want all the bytes at once (which is the easiest way of working - call Encoding.GetBytes(string) once and you're done) or whether you need to break it into chunks - in which case you'll want to use Encoding.GetEncoder and then encode a bit at a time. The encoder takes care of keeping the state between calls, in case you need to break off half way through a character, for example.

share|improve this answer
2  
@JonSkeet: You don't really need the encoding unless you (or someone else) is actually going to interpret the bytes, do you? For tasks like compression, encryption, obfuscation, etc. the encoding seems kind of irrelevant... no reason to go through the trouble if you don't need to.. – Mehrdad Apr 30 '12 at 7:59
1  
@Mehrdad: You absolutely do. An encoding defines what the conversion from a string to a byte array does. Compression and encryption are entirely different matters. Otherwise it's like saying the image format doesn't matter when you want to save a picture as a file - many different image formats may be okay, but there has to be one involved, by definition. – Jon Skeet Apr 30 '12 at 8:09
1  
@JonSkeet: Right, but my point is, the mere fact that the user wants to "get the bytes" doesn't mean that he even needs to know what "encoding" means at all... that only matters if he's interpreting them, not merely working with them as a black box. (Regarding the space issue: yes, that obviously could be an issue, but quite often when you "just want the bytes", that is irrelevant, as I would guess the case was here. It's obviously beneficial to know about encodings, but you don't need to know about them here, do you?) – Mehrdad Apr 30 '12 at 8:21
2  
@Mehrdad: No, the user does need to know the encoding. Just because UTF-16 is in some sense the natural encoding for .NET doesn't mean it's the encoding he wants to use. The point of writing data out is so that it can be read again - and that will need to use the same encoding. The fact that the OP referred to "the equivalent array of bytes" suggests that they're unaware that encodings even exist, and it's vitally important to understand encodings if you're going to convert between text and binary representations. – Jon Skeet Apr 30 '12 at 8:24
1  
I've seen countless people fail to preserve information correctly because they haven't understood encodings. In my experience, educating them about the topic is a much better approach than using Buffer.BlockCopy and assuming it's what they want. – Jon Skeet Apr 30 '12 at 8:25
show 25 more comments

What Encoding are you using? Konrad's got it pretty much down, but there are others out there and you could get goofy results with the wrong one:

byte[] bytes = System.Text.Encoding.XXX.GetBytes(text)

Where XXX can be:

ASCII
BigEndianUnicode
Default
Unicode
UTF32
UTF7
UTF8
share|improve this answer

Like this:

    string test = "text";
    byte[] arr = Encoding.UTF8.GetBytes(test);
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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