Convert to Hex in C#

  • Thread starter Thread starter TC
  • Start date Start date
T

TC

Does anyone know how to convert a hashtable to Hex under C#?

// Return a base 64 encoded string of the Hash value
return Convert.ToBase64String(bytHash);

Thanks & Regards,

TC
 
Hey James,

Sorry for the confusion. I was actually upgrading a VB6 project that used
the Crypto library to C# / .Net. It turns out that I only needed one line
of code from the web security namespace to do the trick.

Regards,

TC



James Curran said:
Your message is a bit confusing.... a hashtable or a hash value? Hex
or Base64?

--
--
Truth,
James Curran
[erstwhile VC++ MVP]

Home: www.noveltheory.com Work: www.njtheater.com
Blog: www.honestillusion.com Day Job: www.partsearch.com

TC said:
Does anyone know how to convert a hashtable to Hex under C#?

// Return a base 64 encoded string of the Hash value
return Convert.ToBase64String(bytHash);

Thanks & Regards,

TC
 
Back
Top