static byte[] GetBytes(string str) { byte[] bytes = new byte[str.Length * sizeof(char)]; System.Buffer.BlockCopy(str.ToCharArray(), , bytes, , bytes.Length); return bytes; } static string GetString(byte[] bytes) { char[] chars = new char[bytes.Length…