Energy.Core
18.12.35
See the version list below for details.
dotnet add package Energy.Core --version 18.12.35
NuGet\Install-Package Energy.Core -Version 18.12.35
<PackageReference Include="Energy.Core" Version="18.12.35" />
paket add Energy.Core --version 18.12.35
#r "nuget: Energy.Core, 18.12.35"
// Install Energy.Core as a Cake Addin #addin nuget:?package=Energy.Core&version=18.12.35 // Install Energy.Core as a Cake Tool #tool nuget:?package=Energy.Core&version=18.12.35
Energy Core Library
Energy.Core is a .NET class library which boosts your program with functionality covering various type conversions, utility classes, database abstraction layer, object mapping and simple application framework.
To be used by wide range of applications, services, web or console programs.
Filled with radioactive rays and made with love for you...
Installation
The easiest way is install using nuget either by finding Energy.Core package in official gallery or by executing command.
Install-Package Energy.Core
Installation package contains versions for .NET 4, .NET Standard / .NET Core and legacy .NET 2. Nuget should choose apropriate version automatically.
Documentation
http://energy-core.readthedocs.io/
Examples
Safely converting value types
Conversion functions are located in Energy.Base.Cast class. These functions will try to convert value to desired type or use defaults if value cannot be converted.
int numberInt = Energy.Base.Cast.StringToInteger("123");
long numberLong = Energy.Base.Cast.StringToLong("1234567890");
double numberDouble = Energy.Base.Cast.StringToDouble("3.1415"); // or "3,1415"
Console.WriteLine(Energy.Base.Cast.DoubleToString(numberDouble));
Last will always result in culture invariant version "3.1415".
Displaying bytes in pretty format
byte[] array = Energy.Base.Random.GetRandomByteArray(40);
Console.WriteLine(Energy.Base.Hex.Print(array));
Which may result in example output.
2c c5 31 be de 96 fb 5a 76 53 b7 84 2c 09 8d 16 ,.1....ZvS..,...
88 0f c5 6c 50 c3 69 51 48 99 4b 9f 53 00 79 89 ...lP.iQH.K.S y.
1d c9 de c6 4a c9 dc e2 ....J...
This was very basic usage but you may extend it with different formatting options, offsets and even coloring.
Waiting for user input on console
When you call Console.ReadLine() program will stop and wait for user input. If you want to stop only when user enters data, use Energy.Core.Tilde.ReadLine() which will result in null as long as user has not accepted its input by pressing Enter key allowing your program to do its job.
Easily make REST requests
How about:
string url = "https://www.google.com/search?q=Energy";
Console.WriteLine(Energy.Core.Web.Get(url).Body);
Easy to use, build upon standard System.Net.WebRequest class REST functions available for common methods like GET, POST, PUT, PATCH, DELETE, HEAD or OPTIONS.
Generic SQL database connection
Here database connection is made using general connection class cooperating with each ADO.NET provider of the database connection.
Energy.Source.Connection<MySql.Data.MySqlClient.MySqlConnection> db
= new Energy.Source.Connection<MySql.Data.MySqlClient.MySqlConnection>();
db.ConnectionString = @"Server=127.0.0.1;Database=test;Uid=test;Pwd=test;";
if (!db.Test())
{
Console.WriteLine("Connection test error");
}
else
{
string result = db.Scalar<string>("SELECT CURRENT_TIMESTAMP()");
Console.WriteLine("Current server time is: {0}", result);
}
Connections are thread safe, may be cloned or even set to be persistent if you want to limit connections to your SQL database.
Content
Library has been divided into several different namespaces. Following table briefly describes the purpose of each of them.
- Energy.Base - Contains base classes
- Energy.Core - Library functions
- Energy.Attribute - Attributes
- Energy.Enumeration - Enumerations
- Energy.Interface - Interfaces
- Energy.Source - Database connection
History
Working for many years on different development projects, from simple applications, web applicatons, to a rich and monolithic production environment with plenty of small software programs that act as interfaces and all kinds of small services, as most of you have probably noticed that some part of the functionality is repeated to a greater or lesser extent regardless of the project type.
This library was created completely independently from my professional work as an attempt to build a "base", which can be quickly used in almost any project in order not to repeat again the same codes to achieve functionality like safe (international) type conversion or generic database connection which is easy and most importantly safe to use.
Greetings
To be continued...
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net20 is compatible. net35 is compatible. net40 is compatible. net403 was computed. net45 was computed. net451 was computed. net452 was computed. net46 was computed. net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETFramework 2.0
- No dependencies.
-
.NETFramework 3.5
- No dependencies.
-
.NETFramework 4.0
- No dependencies.
-
.NETStandard 2.0
- No dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
20.12.21 | 400 | 4/5/2023 |
20.12.20 | 1,071 | 12/1/2021 |
20.12.19 | 515 | 11/7/2021 |
20.12.18 | 439 | 10/20/2021 |
20.12.17 | 414 | 10/6/2021 |
20.12.16 | 1,018 | 4/12/2021 |
20.12.15 | 478 | 2/25/2021 |
20.12.14 | 490 | 2/6/2021 |
20.12.13 | 471 | 1/31/2021 |
20.12.12 | 465 | 1/22/2021 |
20.12.11 | 488 | 1/17/2021 |
20.12.10 | 542 | 12/30/2020 |
18.12.35 | 560 | 12/20/2020 |
18.12.34 | 543 | 11/21/2020 |
18.12.33 | 594 | 10/20/2020 |
18.12.32 | 644 | 9/16/2020 |
18.12.31 | 576 | 8/20/2020 |
18.12.30 | 535 | 8/11/2020 |
18.12.29 | 566 | 5/27/2020 |
18.12.28 | 585 | 5/22/2020 |
18.12.27 | 558 | 5/13/2020 |
18.12.26 | 580 | 5/12/2020 |
18.12.25 | 608 | 5/5/2020 |
18.12.24 | 641 | 4/30/2020 |
18.12.23 | 623 | 4/1/2020 |
18.12.22 | 688 | 3/21/2020 |
18.12.21 | 625 | 3/8/2020 |
18.12.20 | 616 | 2/20/2020 |
18.12.19 | 756 | 2/16/2020 |
18.12.18 | 651 | 2/3/2020 |
18.12.17 | 607 | 1/31/2020 |
18.12.16 | 600 | 1/29/2020 |
18.12.15 | 626 | 1/20/2020 |
18.12.14 | 615 | 12/1/2019 |
18.12.12 | 643 | 10/17/2019 |
18.12.11 | 650 | 9/19/2019 |
18.12.10 | 646 | 8/13/2019 |
18.12.9 | 688 | 6/2/2019 |
18.12.8 | 690 | 5/26/2019 |
18.12.7 | 724 | 4/18/2019 |
18.12.6 | 718 | 3/26/2019 |
18.12.5 | 656 | 3/25/2019 |
18.12.4 | 664 | 3/7/2019 |
18.12.3 | 727 | 2/27/2019 |
18.12.2 | 853 | 12/2/2018 |
18.12.0 | 815 | 12/1/2018 |
18.11.1 | 801 | 11/17/2018 |
18.11.0 | 806 | 11/4/2018 |
18.10.0 | 866 | 10/10/2018 |
18.8.0 | 970 | 8/10/2018 |
18.7.0 | 892 | 7/31/2018 |
18.5.0 | 1,067 | 5/15/2018 |
18.3.0 | 1,110 | 3/24/2018 |
18.1.2 | 1,091 | 1/31/2018 |
18.1.1 | 1,298 | 1/23/2018 |
18.1.0 | 1,075 | 1/17/2018 |
17.12.0 | 1,077 | 12/29/2017 |
17.11.0 | 1,011 | 11/2/2017 |
17.10.3 | 1,005 | 10/20/2017 |
17.10.2 | 1,003 | 10/12/2017 |
17.10.1 | 1,001 | 10/10/2017 |
17.10.0 | 1,000 | 10/7/2017 |
17.9.4 | 979 | 9/27/2017 |
17.9.3 | 1,028 | 9/21/2017 |
17.9.2 | 1,010 | 9/17/2017 |
17.9.1 | 1,021 | 9/10/2017 |
17.9.0 | 990 | 9/6/2017 |
17.7.0 | 1,040 | 7/31/2017 |
17.6.0 | 1,037 | 6/30/2017 |
17.5.0 | 1,054 | 5/21/2017 |
16.10.0 | 1,067 | 3/1/2017 |
16.6.0 | 1,362 | 6/11/2016 |
16.5.0 | 1,071 | 5/19/2016 |
16.4.9 | 1,110 | 4/27/2016 |
16.4.8 | 1,169 | 4/24/2016 |
16.4.6 | 1,099 | 4/16/2016 |
16.4.5 | 1,071 | 4/13/2016 |
16.4.4 | 1,140 | 4/9/2016 |
16.4.3 | 1,156 | 4/9/2016 |
16.4.2 | 1,112 | 4/6/2016 |
16.4.1 | 1,068 | 4/2/2016 |
16.3.2 | 1,067 | 3/31/2016 |
16.3.1 | 1,101 | 3/16/2016 |
16.3.0 | 1,087 | 3/16/2016 |
16.2.3 | 1,454 | 2/28/2016 |
16.2.2 | 1,377 | 2/25/2016 |
16.2.1 | 1,969 | 2/24/2016 |
16.2.0 | 1,258 | 2/24/2016 |
How much reality can you take?