String to Byte[]

JUst want to write some data to the sdcard and it requires a byte[]…i assume this is easy thing…how do i convert a string to byte[]?

From memory:


using System.Text;
byte[] byte_array = System.Text.Encoding.UTF8.GetBytes("me string?");