Beispiel #1
0
 public static string ToHexString(this byte[] byteArray)
 {
     return(byteArray.Aggregate("", (current, b) => current + b.ToString("X2")));
 }