12 lines
292 B
C#
12 lines
292 B
C#
namespace Gma.QrCodeNet.Encoding.Masking;
|
|
|
|
internal class Pattern1 : Pattern
|
|
{
|
|
public override MaskPatternType MaskPatternType => MaskPatternType.Type1;
|
|
|
|
public override bool this[int i, int j]
|
|
{
|
|
get => j % 2 == 0;
|
|
set => throw new NotSupportedException();
|
|
}
|
|
} |