■ Buffer 클래스의 BlockCopy 정적 메소드를 사용해 인코딩 배제 문자열의 바이트 배열을 구하는 방법을 보여준다.
▶ Program.cs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 |
namespace TestProject; /// <summary> /// 프로그램 /// </summary> class Program { //////////////////////////////////////////////////////////////////////////////////////////////////// Method ////////////////////////////////////////////////////////////////////////////////////////// Static //////////////////////////////////////////////////////////////////////////////// Private #region 바이트 배열 구하기 - GetByteArray(sourceText) /// <summary> /// 바이트 배열 구하기 /// </summary> /// <param name="sourceText">소스 텍스트</param> /// <returns>바이트 배열</returns> private static byte[] GetByteArray(string sourceText) { byte[] targetByteArray = new byte[sourceText.Length * sizeof(char)]; Buffer.BlockCopy(sourceText.ToCharArray(), 0, targetByteArray, 0, targetByteArray.Length); return targetByteArray; } #endregion #region 문자열 구하기 - GetString(sourceByteArray) /// <summary> /// 문자열 구하기 /// </summary> /// <param name="sourceByteArray">소스 바이트 배열</param> /// <returns>문자열</returns> private static string GetString(byte[] sourceByteArray) { char[] targetCharacterArray = new char[sourceByteArray.Length / sizeof(char)]; Buffer.BlockCopy(sourceByteArray, 0, targetCharacterArray, 0, sourceByteArray.Length); return new string(targetCharacterArray); } #endregion #region 프로그램 시작하기 - Main() /// <summary> /// 프로그램 시작하기 /// </summary> private static void Main() { string sourceText = DateTime.Now.ToLongDateString(); Console.WriteLine($"소스 텍스트 : {sourceText}"); byte[] sourceByteArray = GetByteArray(sourceText); string targetText = GetString(sourceByteArray); Console.WriteLine($"타겟 텍스트 : {targetText}"); } #endregion } |