mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-15 00:37:11 +00:00
e2f11edc43
discards, Array.Find over FirstOrDefault
35 lines
868 B
C#
35 lines
868 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
|
|
// From: https://github.com/codebude/QRCoder
|
|
namespace QRCoder
|
|
{
|
|
using System;
|
|
|
|
public class QRCodeData : IDisposable
|
|
{
|
|
public List<BitArray> ModuleMatrix { get; set; }
|
|
|
|
public QRCodeData(int version)
|
|
{
|
|
this.Version = version;
|
|
var size = ModulesPerSideFromVersion(version);
|
|
this.ModuleMatrix = new List<BitArray>();
|
|
for (var i = 0; i < size; i++)
|
|
this.ModuleMatrix.Add(new BitArray(size));
|
|
}
|
|
|
|
public int Version { get; private set; }
|
|
|
|
private static int ModulesPerSideFromVersion(int version)
|
|
{
|
|
return 21 + (version - 1) * 4;
|
|
}
|
|
|
|
public void Dispose()
|
|
{
|
|
this.ModuleMatrix = null;
|
|
this.Version = 0;
|
|
}
|
|
}
|
|
}
|