inovationware.code
3.7.0
See the version list below for details.
dotnet add package inovationware.code --version 3.7.0
NuGet\Install-Package inovationware.code -Version 3.7.0
<PackageReference Include="inovationware.code" Version="3.7.0" />
<PackageVersion Include="inovationware.code" Version="3.7.0" />
<PackageReference Include="inovationware.code" />
paket add inovationware.code --version 3.7.0
#r "nuget: inovationware.code, 3.7.0"
#:package inovationware.code@3.7.0
#addin nuget:?package=inovationware.code&version=3.7.0
#tool nuget:?package=inovationware.code&version=3.7.0
Code Repertoire
Code Repertoire is multi-purpose for everyday use in .Net. Following are usage examples.
Bootstrap
Contains methods based on Bootstrap, currently 4 but upgrades are WIP.
C#:
using static iNovation.Code.Bootstrap
Alert("This is an alert");
VB:
Imports iNovation.Code.Bootstrap
Alert("This is an alert")
Charts
Contains methods for dynamically creating charts (Bar, Pie, Doughnut, Line) using given values or directly from database columns.
C#:
using static iNovation.Code.Charts
List<string> labels = new List<string> { "Q1", "Q2", "Q3" };
List<string> values = new List<string> { "50", "25", "75" };
string html = BarChart(labels, values);
VB:
Imports iNovation.Code.Charts
Dim labels As New List(Of String) From {"Q1", "Q2", "Q3"}
Dim values As New List(Of String) From {"50", "25", "75"}
Dim html As String = BarChart(labels, values)
Desktop
Contains methods mainly towards desktop development.
C#:
using static iNovation.Code.Desktoop
enum TitleOfCourtesy{
Mr, Mrs, Ms
}
//binds values of TitleOfCourtesy to comboBox1
EnumDrop(comboBox1, new TitleOfCourtesy());
VB:
Imports iNovation.Code.Desktop
Enum TitleOfCourtesy
Mr
Mrs
Ms
End Enum
' binds values of TitleOfCourtesy to ComboBox1
EnumDrop(ComboBox1, New TitleOfCourtesy())
DesktopExtensions
Contains extension methods based on methods from Desktop.
C#:
using static iNovation.Code.DesktopExtensions
//The items of comboBox1 are turned into a List
comboBox1.ToList();
VB:
Imports iNovation.Code.DesktopExtensions
' The items of ComboBox1 are turned into a List
ComboBox1.ToList()
Encryption
Ligthweight Encryption/Decryption.
C#:
using static iNovation.Code.Encryption
string key = "MyKey";
string value = "What to encrypt";
string encrypted = Encrypt(key, value);
string original = Decrypt(key, encrypted);
VB:
Imports iNovation.Code.Encryption
Dim key As String = "MyKey"
Dim value = "What to encrypt"
Dim encrypted As String = Encrypt(key, value)
Dim original As String = Decrypt(key, encrypted)
EncryptionExtensions
Contains extension methods based on methods from Encryption.
C#:
using static iNovation.Code.EncryptionExtensions
string key = "MyKey";
string value = "What to encrypt";
string encrypted = value.Encrypt(key);
string original = encrypted.Decrypt(key);
VB:
Imports iNovation.Code.EncryptionExtensions
Dim key As String = "MyKey"
Dim value = "What to encrypt"
Dim encrypted As String = value.Encrypt(key)
Dim original As String = value.Decrypt(key)
Feedback
Contains routines for giving feedback with Text-To-Speech and MessageBox.
C#:
using iNovation.Code.Feedback
//Text to speech
string s = "Hi";
Feedback feedback = new Feedback();
feedback.Inform(s);
VB:
Imports iNovation.Code.Feedback
' Text to speech
Dim s As String = "Hi"
Dim f As New Feedback()
f.Inform(s)
FeedbackExtensions
Contains extension methods based on methods from Feedback.
C#:
using iNovation.Code.FeedbackExtensions
//Text to speech
string s = "Hi";
s.Inform();
VB:
Imports iNovation.Code.FeedbackExtensions
' Text to speech
Dim s As String = "Hi"
s.Inform()
General
Contains methods for general purposes.
C#:
using static iNovation.Code.General
string email = "@provider.com";
bool valid = IsEmail(email); //false
VB:
Imports iNovation.Code.General
Dim email As String = "@provider.com"
Dim valid = IsEmail(email) ' False
GeneralExtensions
Contains extension methods based on methods from General.
C#:
using static iNovation.Code.GeneralExtensions
string input = "how Are you doing";
string output = input.ToTitleCase(); //How Are You Doing
VB:
Imports iNovation.Code.GeneralExtensions
Dim input As String = "how Are you doing"
Dim output = input.ToTitleCase() ' How Are You Doing
LoggingExtensions
Contains extension methods useful for logging common data types.
C#:
using static iNovation.Code.LoggingExtensions
string input = "just a log";
input.Log();
VB:
Imports iNovation.Code.LoggingExtensions
Dim input As String = "just a log"
input.Log()
Machine
Contains methods for dealing with the machine directly.
C#:
using static iNovation.Code.Machine
//Mutes the PC
Mute(this);
VB:
Imports iNovation.Code.Machine
' Mutes the PC
Mute(Me)
Sequel
Contains methods for database access.
C#:
using static iNovation.Code.Sequel
string table = "TableName";
string[] fields = { "ColumnName" };
string[] where_params = { "Id" };
object[] where_params_values = { "Id", 10 };
string connection_string = "Connection_String";
//creates select query
string query = iNovation.Code.General.BuildSelectString(table, fields, where_params);
//creates a DataTable
DataTable dataTable = QDataTable(query, connection_string, where_params_values);
VB:
Imports iNovation.Code.Sequel
Dim table As String = "TableName"
Dim fields As String() = {"ColumnName"}
Dim where_params As String() = {"Id"}
Dim where_params_values As Object() = {"Id", 10}
Dim connection_string As String = "Connection_String"
' creates select query
Dim query As String = iNovation.Code.General.BuildSelectString(table, fields, where_params)
' creates a DataTable
Dim d As DataTable = QDataTable(query, connection_string, where_params_values)
SequelOrm
Lightweight ORM. Joins aren't supported yet, but is actively WIP.
C#:
using iNovation.Code.SequelOrm //not strictly needed
class User
{
public int id { get; set; }
public string username { get; set; }
}
string connection_string = "Connection_String";
string database_name = "Database";
SequelOrm orm = SequelOrm.GetInstance(connection_string, database_name);
User sought = orm.FindById<User>(10);
VB:
Imports iNovation.Code.SequelOrm rem not strictly needed
Structure User
Public id As Integer
Public username As String
End Structure
Dim connection_string As String = "Connection_String"
Dim database_name As String = "Database"
Dim orm As SequelOrm = SequelOrm.GetInstance(connection_string, database_name)
Dim sought As User = orm.FindById(Of User)(10)
Styler
Contains methods for desktop development, particularly, styling the Form.
C#:
using static iNovation.Code.Styler
Style(this, true);
VB:
Imports iNovation.Code.Styler
Style(Me, True)
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET Framework | net461 is compatible. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
-
- Microsoft.Bcl.AsyncInterfaces (>= 1.0.0)
- Newtonsoft.Json (>= 13.0.3)
- System.Collections.Immutable (>= 1.7.1)
- System.Numerics.Vectors (>= 4.5.0)
- System.Runtime.CompilerServices.Unsafe (>= 4.5.3)
NuGet packages (3)
Showing the top 3 NuGet packages that depend on inovationware.code:
| Package | Downloads |
|---|---|
|
inovation.incode
Private |
|
|
SecurityAdapter
Description |
|
|
inovationware.securityAdapter
Private |
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated | |
|---|---|---|---|
| 3.9.0 | 156 | 5/31/2025 | |
| 3.8.9 | 239 | 5/4/2025 | |
| 3.7.1 | 159 | 1/15/2025 | |
| 3.7.0 | 189 | 11/23/2024 | |
| 3.6.8 | 178 | 10/24/2024 | |
| 3.6.7 | 175 | 10/20/2024 | |
| 3.6.6 | 192 | 10/17/2024 | |
| 3.6.5 | 147 | 9/20/2024 | |
| 3.6.4 | 183 | 9/20/2024 | |
| 3.6.3 | 182 | 9/20/2024 | |
| 3.6.2 | 169 | 9/20/2024 | |
| 3.6.1 | 186 | 9/20/2024 | |
| 3.6.0 | 445 | 1/15/2024 | |
| 3.5.9 | 487 | 1/11/2024 | |
| 3.5.8 | 432 | 1/7/2024 | |
| 3.5.7 | 428 | 1/6/2024 | |
| 3.5.6 | 456 | 12/23/2023 | |
| 3.5.5 | 438 | 12/21/2023 | |
| 3.5.4 | 450 | 12/20/2023 | |
| 3.5.3 | 442 | 12/20/2023 | |
| 3.5.2 | 475 | 12/15/2023 | |
| 3.5.1 | 493 | 12/15/2023 | |
| 3.5.0 | 465 | 12/15/2023 | |
| 3.4.9 | 463 | 12/15/2023 | |
| 3.4.8 | 466 | 12/13/2023 | |
| 3.4.7 | 480 | 12/12/2023 | |
| 3.4.6 | 470 | 12/12/2023 | |
| 3.4.5 | 470 | 12/12/2023 | |
| 3.4.4 | 508 | 12/9/2023 | |
| 3.4.3 | 484 | 12/4/2023 | |
| 3.4.2 | 571 | 11/29/2023 | |
| 3.4.1 | 513 | 11/29/2023 | |
| 3.4.0 | 531 | 11/29/2023 | |
| 3.3.0 | 552 | 11/22/2023 | |
| 3.2.8 | 529 | 11/22/2023 | |
| 3.2.7 | 491 | 11/22/2023 | |
| 3.2.6 | 529 | 11/20/2023 | |
| 3.2.5 | 548 | 11/20/2023 | |
| 3.2.4 | 757 | 11/19/2023 | |
| 3.2.3 | 912 | 11/12/2023 | |
| 3.2.2 | 474 | 11/11/2023 | |
| 3.2.1 | 502 | 11/11/2023 | |
| 3.2.0 | 466 | 11/11/2023 | |
| 3.1.9 | 532 | 10/22/2023 | |
| 3.1.8 | 533 | 10/22/2023 | |
| 3.1.7 | 604 | 10/22/2023 | |
| 3.1.6 | 566 | 10/22/2023 | |
| 3.1.5 | 510 | 10/22/2023 | |
| 3.1.4 | 553 | 10/22/2023 | |
| 3.1.3 | 515 | 10/22/2023 | |
| 3.1.2 | 663 | 8/12/2023 | |
| 3.1.1 | 681 | 8/12/2023 | |
| 3.1.0 | 717 | 7/17/2023 | |
| 3.0.9 | 736 | 7/12/2023 | |
| 3.0.8 | 731 | 7/12/2023 | |
| 3.0.7 | 715 | 7/12/2023 | |
| 3.0.6 | 715 | 7/9/2023 | |
| 3.0.5 | 713 | 7/9/2023 | |
| 3.0.4 | 739 | 7/7/2023 | |
| 3.0.3 | 833 | 6/29/2023 | |
| 3.0.2 | 749 | 6/29/2023 | |
| 3.0.1 | 725 | 6/29/2023 | |
| 3.0.0 | 724 | 6/27/2023 | |
| 2.0.2 | 748 | 6/24/2023 | |
| 2.0.1 | 741 | 6/24/2023 | |
| 2.0.0 | 737 | 6/24/2023 | |
| 1.9.9 | 754 | 6/24/2023 | |
| 1.9.8 | 738 | 6/23/2023 | |
| 1.9.7 | 769 | 6/22/2023 | |
| 1.9.6 | 746 | 6/17/2023 | |
| 1.9.5 | 719 | 6/16/2023 | |
| 1.9.4 | 718 | 6/10/2023 | |
| 1.9.3 | 740 | 6/9/2023 | |
| 1.9.2 | 790 | 6/9/2023 | |
| 1.9.1 | 754 | 6/9/2023 | |
| 1.9.0 | 754 | 6/9/2023 | |
| 1.8.9 | 734 | 6/9/2023 | |
| 1.8.8 | 752 | 6/9/2023 | |
| 1.8.7 | 725 | 6/8/2023 | |
| 1.8.6 | 776 | 6/6/2023 | |
| 1.8.5 | 761 | 6/6/2023 | |
| 1.8.4 | 732 | 6/6/2023 | |
| 1.8.3 | 696 | 6/5/2023 | |
| 1.8.1 | 720 | 6/5/2023 | |
| 1.8.0 | 742 | 6/5/2023 | |
| 1.7.9 | 736 | 6/4/2023 | |
| 1.7.7 | 742 | 6/4/2023 | |
| 1.7.6 | 712 | 6/3/2023 | |
| 1.7.5 | 707 | 6/3/2023 | |
| 1.7.4 | 758 | 6/1/2023 | |
| 1.7.3 | 740 | 6/1/2023 | |
| 1.7.2 | 888 | 5/31/2023 | |
| 1.7.1 | 794 | 5/31/2023 | |
| 1.7.0 | 733 | 5/31/2023 | |
| 1.6.9 | 734 | 5/27/2023 | |
| 1.6.8 | 761 | 5/27/2023 | |
| 1.6.7 | 766 | 5/27/2023 | |
| 1.6.6 | 716 | 5/27/2023 | |
| 1.6.5 | 762 | 5/27/2023 | |
| 1.6.4 | 755 | 5/27/2023 | |
| 1.6.3 | 733 | 5/27/2023 | |
| 1.6.2 | 748 | 5/23/2023 | |
| 1.6.1 | 746 | 5/23/2023 | |
| 1.6.0 | 740 | 5/23/2023 | |
| 1.5.8 | 744 | 5/22/2023 | |
| 1.5.7 | 768 | 5/22/2023 | |
| 1.5.6 | 744 | 5/21/2023 | |
| 1.5.5 | 729 | 5/21/2023 | |
| 1.5.4 | 711 | 5/21/2023 | |
| 1.5.3 | 746 | 5/21/2023 | |
| 1.5.2 | 741 | 5/21/2023 | |
| 1.5.1 | 733 | 5/21/2023 | |
| 1.4.9 | 756 | 5/21/2023 | |
| 1.4.8 | 754 | 5/21/2023 | |
| 1.4.7 | 754 | 5/21/2023 | |
| 1.4.6 | 694 | 5/8/2023 | |
| 1.4.5 | 752 | 5/7/2023 | |
| 1.4.4 | 746 | 5/6/2023 | |
| 1.4.3 | 733 | 5/5/2023 | |
| 1.4.2 | 728 | 5/5/2023 | |
| 1.4.1 | 735 | 5/5/2023 | |
| 1.4.0 | 707 | 5/5/2023 | |
| 1.3.9 | 750 | 5/5/2023 | |
| 1.3.8 | 691 | 5/5/2023 | |
| 1.3.7 | 732 | 5/5/2023 | |
| 1.3.6 | 740 | 5/2/2023 | |
| 1.3.5 | 784 | 4/24/2023 | |
| 1.3.4 | 720 | 4/23/2023 | |
| 1.3.3 | 836 | 4/23/2023 | |
| 1.3.2 | 740 | 4/23/2023 | |
| 1.3.1 | 762 | 4/23/2023 | |
| 1.3.0 | 724 | 4/23/2023 | |
| 1.2.9 | 777 | 4/23/2023 | |
| 1.2.8 | 801 | 4/23/2023 | |
| 1.2.7 | 776 | 4/23/2023 | |
| 1.2.6 | 748 | 4/13/2023 | |
| 1.2.5 | 819 | 4/13/2023 | |
| 1.2.3 | 796 | 4/12/2023 | |
| 1.2.2 | 808 | 4/11/2023 | |
| 1.2.1 | 782 | 4/11/2023 | |
| 1.2.0 | 761 | 3/17/2023 | |
| 1.1.9 | 846 | 3/17/2023 | |
| 1.1.8 | 821 | 3/17/2023 | |
| 1.1.7 | 954 | 12/27/2022 | |
| 1.1.6 | 943 | 12/27/2022 | |
| 1.1.5 | 872 | 12/27/2022 | |
| 1.1.4 | 909 | 12/27/2022 | |
| 1.1.3 | 925 | 12/24/2022 | |
| 1.1.2 | 891 | 12/24/2022 | |
| 1.1.1 | 914 | 12/24/2022 | |
| 1.1.0 | 922 | 12/22/2022 | |
| 1.0.9 | 1,179 | 9/11/2022 | |
| 1.0.8 | 985 | 9/10/2022 | |
| 1.0.7 | 1,029 | 9/10/2022 | |
| 1.0.6 | 1,007 | 9/10/2022 | |
| 1.0.5 | 1,769 | 8/9/2022 | |
| 1.0.4 | 1,025 | 7/30/2022 | |
| 1.0.3 | 1,005 | 7/29/2022 | |
| 1.0.2 | 1,036 | 7/29/2022 | |
| 1.0.1 | 1,816 | 4/3/2022 |
### New Features
- Added Extension Methods
### Breaking Changes
- Desktop.ListToAray renamed to ListToArray
- Feedback.stress renamed to Stress