Welcome to Comunidade Bloggers |create|it| Sign in | Join | Help

Raúl Ribeiro

Windows SharePoint Services 3.0 , .net, Microsoft Office SharePoint 2007, Office 2007 and 2010

News

Converting Hexadecimal string to byte[]
string hexString = txtHex.Text;
int discarded;
txtByteCount.Text = ((int)HexEncoding.GetByteCount(hexString)).ToString();
txtLength.Text = hexString.Length.ToString();
byte[] byteArray = HexEncoding.GetBytes(hexString, out discarded);
Posted: Wednesday, September 07, 2005 7:21 PM by rrr
Filed under:

Comments

No Comments

Anonymous comments are disabled