Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/hsndmr/tc-kimlik-no
- Owner: hsndmr
- License: mit
- Created: 2024-05-13T16:14:53.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2024-05-13T17:38:35.000Z (7 months ago)
- Last Synced: 2024-05-14T23:12:31.655Z (7 months ago)
- Language: C#
- Homepage:
- Size: 16.6 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# TCKimlikNo
Turkish Identification Number Verification & Validation Package for .Net.## Usage
### How to Validate a T.C. Kimlik No
```csharpusing 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");
```