public static string ByteToString(byte[] stream)
{
string result = string.Concat(Array.ConvertAll(stream, byt => byt.ToString("X2")));
return result;
}
|
반응형
'C#' 카테고리의 다른 글
[c#] hex를 byte로 변환하는 함수 (Hex to Byte) (1) | 2019.06.06 |
---|---|
[c#] byte를 hex로 변환하는 함수 (byte[] to hex) (0) | 2019.06.06 |
[c#] 바이트로 파일 읽어오기 (BinaryReder) (0) | 2019.06.06 |
[c#] Byte[]를 int로 변환하는 함수 (Byte[] to int) (0) | 2019.06.06 |
[c#] byte[]와 byte[] 의 유사도를 구하는 함수 (0) | 2019.06.06 |