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

16 lines
335 B
C#

namespace ESCPOS_NET
{
public static class ByteExtensions
{
public static bool IsBitSet(this byte b, int offset)
{
return (b & (1 << offset)) != 0;
}
public static bool IsBitNotSet(this byte b, int offset)
{
return (b & (1 << offset)) == 0;
}
}
}