Files
point_of_sale/PointOfSale/Utilities/ESCPOS_NET/ByteSplicer.cs
Bjarne Pedersen 41e23b6184 Initial commit
Initial commit til Git.
V2 er deployed
2026-06-13 17:31:50 +02:00

16 lines
393 B
C#

namespace ESCPOS_NET.Utilities
{
public static class ByteSplicer
{
public static byte[] Combine(params byte[][] byteArrays)
{
ByteArrayBuilder builder = new ByteArrayBuilder();
foreach (var byteArray in byteArrays)
{
builder.Append(byteArray);
}
return builder.ToArray();
}
}
}