1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/// <summary>
/// Helper-Method
/// Converted an ASCII-Text to Hex-Value
/// </summary>
/// <param name="i_asciiText">ASCII-Text</param>
/// <returns>String with Hex-Representation</returns>
private String convertAsciiTextToHex(String i_asciiText)
{
StringBuilder sBuffer = new StringBuilder();
for (int i = 0; i < i_asciiText.Length; i++)
{
sBuffer.Append(Convert.ToInt32(i_asciiText[i]).ToString("x"));
}
return sBuffer.ToString().ToUpper();
}
|