16 lines
335 B
C#
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;
|
|
}
|
|
}
|
|
}
|