SyntaxHighlighter.all();

문자열로 변환된 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;
}
 
 

 

반응형

+ Recent posts