/// <summary> /// Appends the prettified multi-line hexadecimal dump of the specified {@link ByteBuf} to the specified /// {@link StringBuilder} that is easy to read by humans, starting at the given {@code offset} using /// the given {@code length}. /// </summary> public static void AppendPrettyHexDump(StringBuilder dump, IByteBuffer buf, int offset, int length) => HexUtil.DoAppendPrettyHexDump(dump, buf, offset, length);