Skip to content

This C# library will help you to generate random pincodes

Notifications You must be signed in to change notification settings

gkhachatryan/smartpincode

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Smart PinCode

This C# library will help you to generate random pincodes.

How to use

Below is shown how to use PinCode class to generate pincodes.

int pinCodeLength = 25;
PinCode pinCode = new PinCode(pinCodeLength, PinCodeType.AlphaNumericWithSymbols);
string newPinCode = pinCode.Generate(); 

int pinlenght = 15;
PinCode pin = new PinCode(pinlenght, PinCodeType.Numeric);
string newpin = pin.Generate();

Result

GitHub Logo

Installation

Here is standalone .dll file.

You can clone it with this link https://github.com/gkhachatryan/smartpincode.git

About

This C# library will help you to generate random pincodes

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages