using System.Collections.Generic; using System.Text; namespace Helper { public static class StringHelper { public static IEnumerable ToBytes(this string str) { byte[] byteArray = Encoding.Default.GetBytes(str); return byteArray; } public static byte[] ToByteArray(this string str) { byte[] byteArray = Encoding.Default.GetBytes(str); return byteArray; } } }