Ecng.Common
1.0.211
See the version list below for details.
dotnet add package Ecng.Common --version 1.0.211
NuGet\Install-Package Ecng.Common -Version 1.0.211
<PackageReference Include="Ecng.Common" Version="1.0.211" />
<PackageVersion Include="Ecng.Common" Version="1.0.211" />
<PackageReference Include="Ecng.Common" />
paket add Ecng.Common --version 1.0.211
#r "nuget: Ecng.Common, 1.0.211"
#:package Ecng.Common@1.0.211
#addin nuget:?package=Ecng.Common&version=1.0.211
#tool nuget:?package=Ecng.Common&version=1.0.211
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 | Versions 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. |
-
.NETStandard 2.0
- Ecng.SmartFormat (>= 1.0.37)
- Microsoft.Bcl.AsyncInterfaces (>= 8.0.0)
- Nito.AsyncEx (>= 5.1.2)
- System.ComponentModel.Annotations (>= 5.0.0)
- System.Reflection.Emit.Lightweight (>= 4.7.0)
- System.Text.Encoding.CodePages (>= 8.0.0)
-
net6.0
- Ecng.SmartFormat (>= 1.0.37)
- Nito.AsyncEx (>= 5.1.2)
- System.Reflection.Emit.Lightweight (>= 4.7.0)
- System.Text.Encoding.CodePages (>= 8.0.0)
NuGet packages (9)
Showing the top 5 NuGet packages that depend on Ecng.Common:
| Package | Downloads |
|---|---|
|
Ecng.Collections
Ecng system framework |
|
|
Ecng.Localization
Ecng system framework |
|
|
Ecng.Configuration
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.212 | 544 | 11/13/2025 |
| 1.0.211 | 1,265 | 11/10/2025 |
| 1.0.210 | 2,163 | 11/1/2025 |
| 1.0.209 | 1,429 | 10/28/2025 |
| 1.0.208 | 1,281 | 10/27/2025 |
| 1.0.207 | 1,280 | 10/27/2025 |
| 1.0.206 | 1,173 | 10/25/2025 |
| 1.0.205 | 4,908 | 10/3/2025 |
| 1.0.204 | 3,562 | 9/25/2025 |
| 1.0.203 | 8,572 | 8/30/2025 |
| 1.0.202 | 9,842 | 7/13/2025 |
| 1.0.201 | 1,174 | 7/13/2025 |
| 1.0.200 | 1,161 | 7/12/2025 |
| 1.0.199 | 2,565 | 7/8/2025 |
| 1.0.198 | 8,572 | 6/16/2025 |
| 1.0.197 | 1,392 | 6/9/2025 |
| 1.0.196 | 1,267 | 6/8/2025 |
| 1.0.195 | 2,890 | 5/21/2025 |
| 1.0.194 | 1,379 | 5/17/2025 |
| 1.0.193 | 3,008 | 5/12/2025 |
| 1.0.192 | 1,296 | 5/12/2025 |
| 1.0.191 | 3,926 | 4/17/2025 |
| 1.0.190 | 7,976 | 3/20/2025 |
| 1.0.189 | 1,191 | 3/19/2025 |
| 1.0.188 | 6,177 | 2/26/2025 |
| 1.0.187 | 1,316 | 2/26/2025 |
| 1.0.186 | 10,024 | 2/5/2025 |
| 1.0.185 | 5,276 | 1/21/2025 |
| 1.0.184 | 4,546 | 1/14/2025 |
| 1.0.183 | 3,368 | 1/12/2025 |
| 1.0.182 | 1,848 | 1/10/2025 |
| 1.0.181 | 10,748 | 11/18/2024 |
| 1.0.180 | 3,162 | 11/7/2024 |
| 1.0.179 | 2,539 | 10/19/2024 |
| 1.0.178 | 8,134 | 10/5/2024 |
| 1.0.177 | 6,175 | 9/18/2024 |
| 1.0.176 | 1,350 | 9/17/2024 |
| 1.0.175 | 6,580 | 9/1/2024 |
| 1.0.174 | 15,929 | 6/12/2024 |
| 1.0.173 | 4,203 | 5/28/2024 |
| 1.0.172 | 5,017 | 5/4/2024 |
| 1.0.171 | 6,543 | 4/14/2024 |
| 1.0.170 | 7,077 | 3/28/2024 |
| 1.0.169 | 1,667 | 3/17/2024 |
| 1.0.168 | 5,037 | 2/23/2024 |
| 1.0.167 | 1,633 | 2/23/2024 |
| 1.0.166 | 5,868 | 2/18/2024 |
| 1.0.165 | 1,733 | 2/16/2024 |
| 1.0.164 | 3,886 | 2/13/2024 |
| 1.0.163 | 3,603 | 2/8/2024 |
| 1.0.162 | 4,838 | 2/4/2024 |
| 1.0.161 | 4,238 | 1/23/2024 |
| 1.0.160 | 4,629 | 1/12/2024 |
| 1.0.159 | 6,933 | 1/2/2024 |
| 1.0.158 | 1,997 | 12/29/2023 |
| 1.0.157 | 20,401 | 11/12/2023 |
| 1.0.156 | 2,408 | 11/10/2023 |
| 1.0.155 | 1,885 | 11/10/2023 |
| 1.0.154 | 2,201 | 11/9/2023 |
| 1.0.153 | 2,976 | 11/3/2023 |
| 1.0.152 | 1,985 | 11/1/2023 |
| 1.0.151 | 1,997 | 11/1/2023 |
| 1.0.150 | 29,109 | 9/8/2023 |
| 1.0.149 | 2,528 | 9/8/2023 |
| 1.0.148 | 2,779 | 9/3/2023 |
| 1.0.147 | 3,012 | 8/21/2023 |
| 1.0.146 | 3,327 | 8/14/2023 |
| 1.0.145 | 3,622 | 8/10/2023 |
| 1.0.144 | 43,381 | 6/29/2023 |
| 1.0.143 | 17,914 | 5/27/2023 |
| 1.0.142 | 5,006 | 5/19/2023 |
| 1.0.141 | 28,770 | 5/8/2023 |
| 1.0.140 | 8,821 | 4/21/2023 |
| 1.0.139 | 55,012 | 4/3/2023 |
| 1.0.138 | 11,690 | 3/13/2023 |
| 1.0.137 | 23,115 | 3/6/2023 |
| 1.0.136 | 5,414 | 2/26/2023 |
| 1.0.135 | 63,037 | 2/9/2023 |
| 1.0.134 | 21,207 | 2/7/2023 |
| 1.0.133 | 5,340 | 2/4/2023 |
| 1.0.132 | 25,544 | 2/2/2023 |
| 1.0.131 | 21,840 | 1/30/2023 |
| 1.0.130 | 10,823 | 1/18/2023 |
| 1.0.129 | 51,829 | 12/30/2022 |
| 1.0.128 | 7,777 | 12/23/2022 |
| 1.0.127 | 26,106 | 12/12/2022 |
| 1.0.126 | 28,901 | 12/4/2022 |
| 1.0.125 | 5,943 | 12/4/2022 |
| 1.0.124 | 6,878 | 11/30/2022 |
| 1.0.123 | 10,135 | 11/28/2022 |
| 1.0.122 | 10,515 | 11/18/2022 |
| 1.0.121 | 33,936 | 11/11/2022 |
| 1.0.120 | 6,473 | 11/11/2022 |
| 1.0.119 | 6,361 | 11/10/2022 |
| 1.0.118 | 7,115 | 11/5/2022 |
| 1.0.117 | 8,211 | 11/4/2022 |
| 1.0.116 | 30,698 | 11/1/2022 |
| 1.0.115 | 36,154 | 10/16/2022 |
| 1.0.114 | 14,985 | 9/10/2022 |
| 1.0.113 | 58,343 | 9/8/2022 |
| 1.0.112 | 7,628 | 9/8/2022 |
| 1.0.111 | 7,695 | 9/8/2022 |
| 1.0.110 | 10,062 | 9/4/2022 |
| 1.0.109 | 98,143 | 8/24/2022 |
| 1.0.108 | 17,497 | 8/8/2022 |
| 1.0.107 | 10,752 | 7/26/2022 |
| 1.0.106 | 7,661 | 7/26/2022 |
| 1.0.105 | 60,339 | 7/19/2022 |
| 1.0.104 | 53,099 | 7/18/2022 |
| 1.0.103 | 13,708 | 7/8/2022 |
| 1.0.102 | 12,242 | 6/18/2022 |
| 1.0.101 | 7,798 | 6/6/2022 |
| 1.0.100 | 103,990 | 4/30/2022 |
| 1.0.99 | 7,684 | 4/20/2022 |
| 1.0.98 | 7,790 | 4/10/2022 |
| 1.0.97 | 7,695 | 4/7/2022 |
| 1.0.96 | 7,785 | 4/7/2022 |
| 1.0.95 | 7,823 | 4/2/2022 |
| 1.0.94 | 19,216 | 3/29/2022 |
| 1.0.93 | 10,641 | 3/27/2022 |
| 1.0.92 | 297,417 | 1/24/2022 |
| 1.0.91 | 168,088 | 12/29/2021 |
| 1.0.90 | 33,624 | 12/20/2021 |
| 1.0.89 | 6,669 | 12/13/2021 |
| 1.0.88 | 63,840 | 12/6/2021 |
| 1.0.87 | 8,249 | 12/2/2021 |
| 1.0.86 | 34,323 | 11/29/2021 |
| 1.0.85 | 33,097 | 11/22/2021 |
| 1.0.84 | 4,798 | 11/17/2021 |
| 1.0.83 | 35,116 | 11/13/2021 |
| 1.0.82 | 8,224 | 11/10/2021 |
| 1.0.81 | 5,036 | 11/9/2021 |
| 1.0.80 | 68,115 | 11/5/2021 |
| 1.0.79 | 7,020 | 11/4/2021 |
| 1.0.78 | 4,904 | 11/4/2021 |
| 1.0.77 | 4,833 | 11/3/2021 |
| 1.0.76 | 5,205 | 10/30/2021 |
| 1.0.75 | 36,711 | 10/21/2021 |
| 1.0.74 | 5,697 | 10/17/2021 |
| 1.0.73 | 66,871 | 10/14/2021 |
| 1.0.72 | 16,471 | 10/13/2021 |
| 1.0.71 | 5,280 | 10/12/2021 |
| 1.0.70 | 37,075 | 10/11/2021 |
| 1.0.69 | 5,097 | 10/9/2021 |
| 1.0.68 | 40,357 | 10/7/2021 |
| 1.0.67 | 42,497 | 10/7/2021 |
| 1.0.66 | 5,105 | 10/7/2021 |
| 1.0.65 | 5,096 | 10/6/2021 |
| 1.0.64 | 4,961 | 9/28/2021 |
| 1.0.63 | 39,033 | 9/23/2021 |
| 1.0.62 | 6,678 | 9/10/2021 |
| 1.0.61 | 4,757 | 9/9/2021 |
| 1.0.60 | 4,787 | 9/8/2021 |
| 1.0.59 | 4,822 | 9/8/2021 |
| 1.0.58 | 36,128 | 9/6/2021 |
| 1.0.57 | 5,101 | 8/31/2021 |
| 1.0.56 | 4,911 | 8/30/2021 |
| 1.0.55 | 38,245 | 7/31/2021 |
| 1.0.54 | 65,048 | 7/30/2021 |
| 1.0.53 | 5,122 | 7/26/2021 |
| 1.0.52 | 94,800 | 7/5/2021 |
| 1.0.51 | 5,050 | 7/1/2021 |
| 1.0.50 | 67,853 | 6/4/2021 |
| 1.0.49 | 96,393 | 4/26/2021 |
| 1.0.48 | 36,026 | 4/19/2021 |
| 1.0.47 | 155,441 | 4/7/2021 |
| 1.0.46 | 35,350 | 4/3/2021 |
| 1.0.45 | 185,027 | 3/22/2021 |
| 1.0.44 | 117,976 | 3/4/2021 |
| 1.0.43 | 38,166 | 2/26/2021 |
| 1.0.42 | 173,787 | 2/2/2021 |
| 1.0.41 | 124,313 | 1/24/2021 |
| 1.0.40 | 5,049 | 1/23/2021 |
| 1.0.39 | 63,473 | 1/20/2021 |
| 1.0.38 | 4,947 | 1/20/2021 |
| 1.0.37 | 37,307 | 1/18/2021 |
| 1.0.36 | 32,578 | 1/16/2021 |
| 1.0.35 | 123,978 | 12/16/2020 |
| 1.0.34 | 60,566 | 12/14/2020 |
| 1.0.33 | 37,801 | 12/9/2020 |
| 1.0.32 | 7,372 | 12/6/2020 |
| 1.0.31 | 9,191 | 12/2/2020 |
| 1.0.30 | 33,837 | 12/1/2020 |
| 1.0.29 | 198,052 | 11/12/2020 |
| 1.0.29-atestpub | 2,596 | 11/11/2020 |
| 1.0.28 | 35,078 | 10/11/2020 |
| 1.0.27 | 117,826 | 9/9/2020 |
| 1.0.26 | 33,497 | 9/3/2020 |
| 1.0.25 | 34,002 | 8/20/2020 |
| 1.0.24 | 89,918 | 8/9/2020 |
| 1.0.23 | 34,406 | 7/28/2020 |
| 1.0.22 | 33,476 | 7/19/2020 |
| 1.0.21 | 60,786 | 7/6/2020 |
| 1.0.20 | 90,376 | 6/6/2020 |
| 1.0.19 | 34,756 | 6/4/2020 |
| 1.0.18 | 62,141 | 5/29/2020 |
| 1.0.17 | 61,938 | 5/21/2020 |
| 1.0.16 | 6,111 | 5/17/2020 |
| 1.0.15 | 60,830 | 5/12/2020 |
| 1.0.14 | 116,026 | 5/4/2020 |
| 1.0.13 | 10,119 | 4/24/2020 |
| 1.0.12 | 13,290 | 4/22/2020 |
| 1.0.11 | 6,060 | 4/22/2020 |
| 1.0.10 | 5,928 | 4/21/2020 |
| 1.0.9 | 35,369 | 4/18/2020 |
| 1.0.8 | 33,176 | 4/16/2020 |
| 1.0.7 | 5,893 | 4/16/2020 |
| 1.0.6 | 28,203 | 4/15/2020 |
| 1.0.5 | 31,168 | 4/11/2020 |
| 1.0.4 | 29,712 | 4/3/2020 |
| 1.0.3 | 5,219 | 4/1/2020 |
| 1.0.2 | 16,685 | 3/27/2020 |
| 1.0.1 | 15,722 | 3/22/2020 |
| 1.0.0 | 8,457 | 3/22/2020 |
NoWait for IAsyncEnumerable<T>