Skip to content

tundeadetunji/api-dot_net-all_modules

Repository files navigation

Code Repertoire


A programmer's toolkit - contains handy functions for daily use, typically imported into .Net Framework/Core projects via Nuget.

Compatible with .Net Framework 4.6 and greater.



To use, add these imports as required (please check the individual files for up to date list):

C#:

using static iNovation.Code.General;
using static iNovation.Code.Desktop;
using static iNovation.Code.Encryption;
using static iNovation.Code.Media;
using static iNovation.Code.Sequel;
using static iNovation.Code.Web;

VB:

Imports iNovation.Code.General
Imports iNovation.Code.Desktop
Imports iNovation.Code.Encryption
Imports iNovation.Code.Media
Imports iNovation.Code.Sequel
Imports iNovation.Code.Web

Then, to check if the user has typed anything in TextBox, for example:

if (IsEmpty(theTextBox))
{
    //ToDo
}

To encrypt text, use:

String string = "to be encrypted";
String encrypted = Encrypt(string);

and to get back original string:

String decrypted = Decrypt(encrypted);

For static/shared imports:

C#:

using static iNovation.Code.Bootstrap;
using static iNovation.Code.Charts;
using static iNovation.Code.Styler;

VB:

Imports iNovation.Code.Bootstrap
Imports iNovation.Code.Charts
Imports iNovation.Code.Styler

Then to utilize Text To Speech, you can use, for example

iNovation.Code.Feedback.say("what to say out loud");

§

Desktop and Web both contain the same functions but Desktop targets desktop environment while Web targets ASP.NET environment, their references differ and may conflict if used together.

For more, please refer to invidual documentation/ReadMe files.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published