1
2
3
4
5
6
7
8
9
10
11
12
|
public static byte[] HexToByte(string hex)
{
byte[] convert = new byte[hex.Length / 2];
int length = convert.Length;
for (int i = 0; i < length; i++)
{
convert[i] = Convert.ToByte(hex.Substring(i * 2), 16);
}
return convert;
}
|
반응형
'C#' 카테고리의 다른 글
[c#] Enter키 입력으로 버튼 클릭하기. (0) | 2019.06.07 |
---|---|
[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 |