Skip to content

Instantly share code, notes, and snippets.

View Dart25's full-sized avatar

dart Dart25

  • Poland
View GitHub Profile
@Dart25
Dart25 / Pesel.cs
Created November 29, 2025 17:52
klasa dla numerów PESEL c#
//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