This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //klasa pomocnicza dla numerów PESEL w c# | |
| //https://www.gov.pl/web/gov/czym-jest-numer-pesel | |
| public struct Pesel | |
| { | |
| private const int DigitsCount = 11; | |
| //wagi dla pierwszych 10 cyfr | |
| private static readonly int[] DigitWeight = new int[] | |
| { | |
| 1, 3, 7, 9, 1, 3, 7, 9, 1, 3 |