using System.Text; public static byte[] encode(string stringToEncode) { UTF8Encoding utf8 = new UtF8Encoding(); byte[] bytename = new byte[1024]; bytename = utf8.GetBytes(stringToEncode); return bytename; }