Ros_CSharp.TcpTransport.ByteDumpCondensed C# (CSharp) Метод

ByteDumpCondensed() публичный статический Метод

public static ByteDumpCondensed ( byte b ) : string
b byte
Результат string
        public static string ByteDumpCondensed(byte[] b)
        {
            return b.Aggregate("", (current, t) => current + ("" + t.ToString("x") + ""));
        }