| 1234567891011121314151617181920 |
- using System.Collections.Generic;
- using System.Text;
- namespace Helper
- {
- public static class StringHelper
- {
- public static IEnumerable<byte> 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;
- }
- }
- }
|