/// <summary>
 /// Converts a the input <paramref name="bytes"/> to a hex string.
 /// </summary>
 /// <param name="bytes">Array of bytes to convert to hex string.</param>
 /// <returns>A hex string representation of the input <paramref name="bytes"/>.</returns>
 public static String ToHex(this Byte[] bytes)
 {
     return(DDRIT.ToHex(bytes));
 }