Ecng.Common 1.0.199

dotnet add package Ecng.Common --version 1.0.199
                    
NuGet\Install-Package Ecng.Common -Version 1.0.199
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Ecng.Common" Version="1.0.199" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Ecng.Common" Version="1.0.199" />
                    
Directory.Packages.props
<PackageReference Include="Ecng.Common" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Ecng.Common --version 1.0.199
                    
#r "nuget: Ecng.Common, 1.0.199"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#addin nuget:?package=Ecng.Common&version=1.0.199
                    
Install as a Cake Addin
#tool nuget:?package=Ecng.Common&version=1.0.199
                    
Install as a Cake Tool

Ecng.Common

A set of helpers and extensions that simplify everyday .NET tasks. The library contains convenient string utilities, a fast CSV parser, and a flexible converter able to transform many data types.

Purpose

Provide reusable helpers for core scenarios so that applications can stay concise and readable.

Key Features

  • Rich string manipulation helpers
  • High performance CSV parsing
  • Flexible conversion between numerous types

String helpers

StringHelper adds small but handy methods:

"text".IsEmpty();                // bool check
"{0} + {1} = {2}".Put(1, 2, 3);  // simple formatting
"a\nb".SplitByLineSeps();         // split by any newline

CSV parser

FastCsvReader reads CSV data without allocations:

var csv = "Id;Name\n1;Foo\n2;Bar";
var reader = new FastCsvReader(csv, StringHelper.N);

while (reader.NextLine())
{
    var id = reader.ReadInt();
    var name = reader.ReadString();
    Console.WriteLine($"{id}: {name}");
}

Type converter

Converter easily casts objects across a wide range of types:

int number = "42".To<int>();        // string -> int
byte[] data = number.To<byte[]>();   // int -> byte[]
DateTime date = 1700L.To<DateTime>();

Additional converters can be registered through Converter.AddTypedConverter.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 is compatible.  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.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.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 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (10)

Showing the top 5 NuGet packages that depend on Ecng.Common:

Package Downloads
Ecng.Collections

Ecng system framework

Ecng.Configuration

Ecng system framework

Ecng.Localization

Ecng system framework

Ecng.IO

Ecng system framework

Ecng.Interop

Ecng system framework

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.0.199 431 7/8/2025
1.0.198 3,806 6/16/2025
1.0.197 772 6/9/2025
1.0.196 679 6/8/2025
1.0.195 1,578 5/21/2025
1.0.194 691 5/17/2025
1.0.193 1,662 5/12/2025
1.0.192 675 5/12/2025
1.0.191 2,096 4/17/2025
1.0.190 4,523 3/20/2025
1.0.189 613 3/19/2025
1.0.188 3,609 2/26/2025
1.0.187 733 2/26/2025
1.0.186 5,673 2/5/2025
1.0.185 3,041 1/21/2025
1.0.184 2,591 1/14/2025
1.0.183 1,765 1/12/2025
1.0.182 970 1/10/2025
1.0.181 7,063 11/18/2024
1.0.180 1,925 11/7/2024
1.0.179 1,542 10/19/2024
1.0.178 5,054 10/5/2024
1.0.177 3,750 9/18/2024
1.0.176 825 9/17/2024
1.0.175 4,264 9/1/2024
1.0.174 10,303 6/12/2024
1.0.173 2,743 5/28/2024
1.0.172 3,230 5/4/2024
1.0.171 4,250 4/14/2024
1.0.170 4,765 3/28/2024
1.0.169 1,120 3/17/2024
1.0.168 3,593 2/23/2024
1.0.167 1,083 2/23/2024
1.0.166 4,186 2/18/2024
1.0.165 1,142 2/16/2024
1.0.164 2,788 2/13/2024
1.0.163 2,619 2/8/2024
1.0.162 3,540 2/4/2024
1.0.161 3,211 1/23/2024
1.0.160 3,372 1/12/2024
1.0.159 5,165 1/2/2024
1.0.158 1,423 12/29/2023
1.0.157 15,467 11/12/2023
1.0.156 1,731 11/10/2023
1.0.155 1,383 11/10/2023
1.0.154 1,588 11/9/2023
1.0.153 2,088 11/3/2023
1.0.152 1,477 11/1/2023
1.0.151 1,446 11/1/2023
1.0.150 26,106 9/8/2023
1.0.149 1,861 9/8/2023
1.0.148 2,071 9/3/2023
1.0.147 2,219 8/21/2023
1.0.146 2,524 8/14/2023
1.0.145 2,672 8/10/2023
1.0.144 40,246 6/29/2023
1.0.143 15,824 5/27/2023
1.0.142 3,995 5/19/2023
1.0.141 26,101 5/8/2023
1.0.140 7,091 4/21/2023
1.0.139 51,632 4/3/2023
1.0.138 9,937 3/13/2023
1.0.137 21,402 3/6/2023
1.0.136 4,810 2/26/2023
1.0.135 59,364 2/9/2023
1.0.134 19,982 2/7/2023
1.0.133 4,658 2/4/2023
1.0.132 24,045 2/2/2023
1.0.131 20,679 1/30/2023
1.0.130 9,628 1/18/2023
1.0.129 49,134 12/30/2022
1.0.128 6,994 12/23/2022
1.0.127 24,660 12/12/2022
1.0.126 27,420 12/4/2022
1.0.125 5,461 12/4/2022
1.0.124 6,187 11/30/2022
1.0.123 9,324 11/28/2022
1.0.122 9,698 11/18/2022
1.0.121 32,311 11/11/2022
1.0.120 5,878 11/11/2022
1.0.119 5,849 11/10/2022
1.0.118 6,525 11/5/2022
1.0.117 7,583 11/4/2022
1.0.116 29,409 11/1/2022
1.0.115 34,821 10/16/2022
1.0.114 14,071 9/10/2022
1.0.113 56,721 9/8/2022
1.0.112 7,133 9/8/2022
1.0.111 7,177 9/8/2022
1.0.110 9,433 9/4/2022
1.0.109 95,979 8/24/2022
1.0.108 16,365 8/8/2022
1.0.107 10,115 7/26/2022
1.0.106 7,203 7/26/2022
1.0.105 58,746 7/19/2022
1.0.104 51,882 7/18/2022
1.0.103 12,934 7/8/2022
1.0.102 11,521 6/18/2022
1.0.101 7,324 6/6/2022
1.0.100 101,807 4/30/2022
1.0.99 7,252 4/20/2022
1.0.98 7,366 4/10/2022
1.0.97 7,269 4/7/2022
1.0.96 7,318 4/7/2022
1.0.95 7,387 4/2/2022
1.0.94 18,439 3/29/2022
1.0.93 10,060 3/27/2022
1.0.92 289,945 1/24/2022
1.0.91 164,354 12/29/2021
1.0.90 32,233 12/20/2021
1.0.89 6,097 12/13/2021
1.0.88 61,582 12/6/2021
1.0.87 7,545 12/2/2021
1.0.86 33,026 11/29/2021
1.0.85 31,838 11/22/2021
1.0.84 4,364 11/17/2021
1.0.83 33,700 11/13/2021
1.0.82 7,535 11/10/2021
1.0.81 4,616 11/9/2021
1.0.80 65,973 11/5/2021
1.0.79 6,352 11/4/2021
1.0.78 4,503 11/4/2021
1.0.77 4,408 11/3/2021
1.0.76 4,767 10/30/2021
1.0.75 35,619 10/21/2021
1.0.74 5,222 10/17/2021
1.0.73 65,004 10/14/2021
1.0.72 15,468 10/13/2021
1.0.71 4,743 10/12/2021
1.0.70 35,790 10/11/2021
1.0.69 4,679 10/9/2021
1.0.68 39,206 10/7/2021
1.0.67 41,048 10/7/2021
1.0.66 4,652 10/7/2021
1.0.65 4,675 10/6/2021
1.0.64 4,527 9/28/2021
1.0.63 37,761 9/23/2021
1.0.62 6,117 9/10/2021
1.0.61 4,343 9/9/2021
1.0.60 4,398 9/8/2021
1.0.59 4,397 9/8/2021
1.0.58 35,003 9/6/2021
1.0.57 4,689 8/31/2021
1.0.56 4,516 8/30/2021
1.0.55 37,141 7/31/2021
1.0.54 63,241 7/30/2021
1.0.53 4,699 7/26/2021
1.0.52 92,370 7/5/2021
1.0.51 4,645 7/1/2021
1.0.50 66,106 6/4/2021
1.0.49 93,974 4/26/2021
1.0.48 34,919 4/19/2021
1.0.47 151,659 4/7/2021
1.0.46 34,228 4/3/2021
1.0.45 180,642 3/22/2021
1.0.44 114,872 3/4/2021
1.0.43 36,899 2/26/2021
1.0.42 169,435 2/2/2021
1.0.41 120,824 1/24/2021
1.0.40 4,653 1/23/2021
1.0.39 61,732 1/20/2021
1.0.38 4,522 1/20/2021
1.0.37 36,078 1/18/2021
1.0.36 31,530 1/16/2021
1.0.35 120,494 12/16/2020
1.0.34 58,595 12/14/2020
1.0.33 36,350 12/9/2020
1.0.32 6,777 12/6/2020
1.0.31 8,456 12/2/2020
1.0.30 32,581 12/1/2020
1.0.29 192,175 11/12/2020
1.0.29-atestpub 2,257 11/11/2020
1.0.28 34,010 10/11/2020
1.0.27 114,931 9/9/2020
1.0.26 32,485 9/3/2020
1.0.25 32,979 8/20/2020
1.0.24 87,672 8/9/2020
1.0.23 33,364 7/28/2020
1.0.22 32,345 7/19/2020
1.0.21 59,170 7/6/2020
1.0.20 88,369 6/6/2020
1.0.19 33,688 6/4/2020
1.0.18 60,666 5/29/2020
1.0.17 60,335 5/21/2020
1.0.16 5,718 5/17/2020
1.0.15 59,454 5/12/2020
1.0.14 113,379 5/4/2020
1.0.13 9,564 4/24/2020
1.0.12 12,521 4/22/2020
1.0.11 5,586 4/22/2020
1.0.10 5,545 4/21/2020
1.0.9 34,296 4/18/2020
1.0.8 32,277 4/16/2020
1.0.7 5,474 4/16/2020
1.0.6 27,348 4/15/2020
1.0.5 30,208 4/11/2020
1.0.4 28,791 4/3/2020
1.0.3 4,861 4/1/2020
1.0.2 15,644 3/27/2020
1.0.1 14,664 3/22/2020
1.0.0 7,848 3/22/2020

Remove Tests README