Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/hsndmr/tc-kimlik-no

Turkish Identification Number Verification & Validation Package for .NET
https://github.com/hsndmr/tc-kimlik-no

Last synced: 24 days ago
JSON representation

Turkish Identification Number Verification & Validation Package for .NET

Awesome Lists containing this project

README

        

# TCKimlikNo
Turkish Identification Number Verification & Validation Package for .Net.

## Usage

### How to Validate a T.C. Kimlik No
```csharp

using TCKimlikNo;

var args = new TcKimlikNoDto()
{
Name = "HASAN",
Surname = "DEMİR",
Tc = "10000000146",
BirthYear = 2024
};

var isValid = await TcKimlikNo.Validate(args);

```
### How to Validate a T.C. Kimlik No
```csharp
var isValid = TcKimlikNo.Verify("10000000146");
```