투케이2K

58. (C#/NET) [Mac Os] [문법] byte to hex string 변환 및 데이터 출력 - BitConverter.ToString 본문

C샵 (NET)

58. (C#/NET) [Mac Os] [문법] byte to hex string 변환 및 데이터 출력 - BitConverter.ToString

투케이2K 2024. 3. 16. 09:51

[개발 환경 설정]

개발 언어 : C# / NET

 

[소스 코드]

using System;
using System.Collections;
using System.Data;
using System.Diagnostics.Tracing;
using System.Text;

namespace testProject {


    // [프로그램 동작 클래스]
    class Program {

        static void Main(string[] args){

            // [변수 선언 실시]
            string str = "hello";


            // [string to byte 변경]
            byte[] bytData = Encoding.UTF8.GetBytes(str);


            // [byte to hex 변경]
            string strData = BitConverter.ToString(bytData);
            strData = strData.Replace("-", " ");


            // [로그 출력 수행]
            Console.WriteLine($"");
            Console.WriteLine($"------------------------------------------");
            Console.WriteLine($"[Main] : [Log]");
            Console.WriteLine($"------------------------------------------");
            Console.WriteLine($"bytData : {string.Join(", ", bytData)}");
            Console.WriteLine($"------------------------------------------");
            Console.WriteLine($"strData : {strData}");
            Console.WriteLine($"------------------------------------------");
            Console.WriteLine($"");

        }

    }

}
 

[결과 출력]

 

 
반응형
Comments