Skip to content
This repository was archived by the owner on Oct 22, 2018. It is now read-only.

Latest commit

 

History

History
36 lines (31 loc) · 1.23 KB

File metadata and controls

36 lines (31 loc) · 1.23 KB

Helper Build status

Helper is .net base library create to help developers on common and general tasks and be a helpful asst to any project.

Helper contane many function related to :

  • General numbers functions
  • Numbers conversion
  • Generate random numbers
  • Generate fibonacci sequence
  • Shorthand string validation
  • Generate random string
  • Json stringify,parse functions
  • Generate hashs like md5,Sha1,Sha256,Sha384,Sha512
  • Database connection test
  • Simple database layer
  • Get SystemInfo like OS,CPU,HDD ....

Install

* Add Helper.dll as reference to your project
* Add using Helper; directive to your code

How to use

All the functions in Helper are static

int number = Nembers.ToInt("10");
string  binaryNumer =  Numbers.ToBinary(number);
string passwordHash = Cryptographyx.ToHash("123456", Algorithm.Md5); 
string value = "Hello";
bool result = Strings.IsValid(value);

In addition Sys project build on top of helper and use SystemInfo functions.

License

Helper is freely distributable under the terms of the MIT license.