검색결과 리스트
CSharp에 해당되는 글 12건
- 2013.07.08 C# 문자열 16진수 변환
글
public string ConvertStringToHex(string asciiString)
{
string hex = "";
foreach (char c in asciiString)
{
int tmp = c;
hex += String.Format("{0:x2}", (uint)System.Convert.ToUInt32(tmp.ToString()));
}
return hex;
}
public string ConvertHexToString(string HexValue)
{
string StrValue = "";
while (HexValue.Length > 0)
{
StrValue += System.Convert.ToChar(System.Convert.ToUInt32(HexValue.Substring(0, 2), 16)).ToString();
HexValue = HexValue.Substring(2, HexValue.Length - 2);
}
return StrValue;
}
추가) 2013.08.08
위의 예처럼 2자리씩 끊어 변환하는 것이 아니라 Hex전체를 10진수로 변환하기
public static string ConvertHexAllToString(string HexValue)
{
string StrValue = "";
if(HexValue.Length > 0)
{
StrValue = System.Convert.ToUInt64(HexValue, 16).ToString();
}
return StrValue;
}
'-- C#' 카테고리의 다른 글
XML receive and parse via http (0) | 2013.08.08 |
---|---|
WinCE SqlCe사용 (0) | 2013.05.29 |
프로그램적으로 파일업로드 (0) | 2012.11.23 |
자동 리디렉션을 너무 많이 시도했습니다. (Too many automatic redirections attempted) (0) | 2012.10.25 |
Text파일의 내용을 한줄씩 읽기 (0) | 2012.09.06 |
RECENT COMMENT