This contains almost everyday re-usable codes for developers in order to ease and fasten development time.
$ dotnet add package Utilities.Dev.HelperUtilities.Dev.Helper is a .Net library for faster and easy development. This library helps take care of the common and everyday re-usable functions or codes. It is intended to cover all areas of the development.
After installing the package, include it in your project to have access to all the classes, functions, extensions and methods.
#1: Applying the library and to make it available in your code.
Using Utilities.Dev.Helper
#2: Generate random number
using Utilities.Dev.Helper.Methods
UtilDefault.GenerateRandomNumbers(6);
#2: Remove special characters
using Utilities.Dev.Helper.Extensions
String text = "/Good @ Luck";
text.UtilDefault.TruncateSpecialCharacters();
This will be considered in the later future.