Notice
Recent Posts
Recent Comments
Link
목록BitConverter (1)
투케이2K
58. (C#/NET) [Mac Os] [문법] byte to hex string 변환 및 데이터 출력 - BitConverter.ToString
[개발 환경 설정] 개발 언어 : 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.T..
C샵 (NET)
2024. 3. 16. 09:51