You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: QRCoder/QRCodeGenerator.CodewordBlock.cs
+15-6
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,6 @@
1
-
namespaceQRCoder
1
+
usingSystem.Collections;
2
+
3
+
namespaceQRCoder
2
4
{
3
5
publicpartialclassQRCodeGenerator
4
6
{
@@ -11,18 +13,25 @@ private struct CodewordBlock
11
13
/// <summary>
12
14
/// Initializes a new instance of the CodewordBlock struct with specified arrays of code words and error correction (ECC) words.
13
15
/// </summary>
14
-
/// <param name="codeWords">The array of data codewords for this block. Data codewords carry the actual information.</param>
16
+
/// <param name="codeWordsOffset">The offset of the data codewords within the main BitArray. Data codewords carry the actual information.</param>
17
+
/// <param name="codeWordsLength">The length in bits of the data codewords within the main BitArray.</param>
15
18
/// <param name="eccWords">The array of error correction codewords for this block. These codewords help recover the data if the QR code is damaged.</param>
0 commit comments