コード例 #1
0
ファイル: Extensions.cs プロジェクト: hassiumsoft/CypherCore
 public static string ToHexString(this byte[] byteArray)
 {
     return(byteArray.Aggregate("", (current, b) => current + b.ToString("X2")));
 }