[C#/.Net Framework] Byte Array를 16진수 문자열로 바꾸는 간편한 방법
BitConverter.ToString(byte[] array)
stirng BitConverter.ToString 메서드를 사용하면 byte array를 간편하게 16진수 문자열로 변환할 수 있습니다.
예제
BitConverter.ToString(new byte[] { 10, 20, 30, 40 }); // => "0A-14-1E-28"
BitConverter.ToString(new byte[] { 15, 17, 42, 65, 91 }).Replace("-", ""); // => "0F112A415B"
댓글
댓글 쓰기