Skip to content

Instantly share code, notes, and snippets.

@atheken
Created March 28, 2010 18:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save atheken/346955 to your computer and use it in GitHub Desktop.
Save atheken/346955 to your computer and use it in GitHub Desktop.
//Makes a hex string from bytes.
public static String HexStringForBytes(this IEnumerable<bytes> bytes)
{
return bytes.Aggregate(new StringBuilder(), (seed,current)=>seed.AppendFormat("{0:x2}",current)).ToString();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment