문자열로 변환된 Byte[]를 int로 변환하는 함수.
(System.text 필요)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
public static int ByteToInt(string param)
{
// need to using.system.text
byte[] convert = Encoding.UTF8.GetBytes(param);
byte[] buffer = { convert[6], convert[7], convert[4], convert[5], convert[2], convert[3],
convert[0], convert[1]
};
string temp = Encoding.Default.GetString(buffer);
int value = Int32.Parse(temp, System.Globalization.NumberStyles.HexNumber);
return value;
}
|
반응형
'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[]와 byte[] 의 유사도를 구하는 함수 (0) | 2019.06.06 |
[c#] Byte[]를 string으로 변환하는 함수(Bytes to string) (0) | 2019.06.06 |