Extensions.Standard
12.0.0
dotnet add package Extensions.Standard --version 12.0.0
NuGet\Install-Package Extensions.Standard -Version 12.0.0
<PackageReference Include="Extensions.Standard" Version="12.0.0" />
<PackageVersion Include="Extensions.Standard" Version="12.0.0" />
<PackageReference Include="Extensions.Standard" />
paket add Extensions.Standard --version 12.0.0
#r "nuget: Extensions.Standard, 12.0.0"
#:package Extensions.Standard@12.0.0
#addin nuget:?package=Extensions.Standard&version=12.0.0
#tool nuget:?package=Extensions.Standard&version=12.0.0
Extensions.Standard
Lightweight extensions methods (and constants) for common programming tasks, like:
- Suffixes (AsMemory, AsTime)
- Interpolate
- Partition
- Shuffle (O(n))
- Softmax
- InnerProduct
- IsPrime
- ManhattanDistance
- EuclideanDistance
- InRangeInclusive / InRangeExclusive
- MeanSquaredError
- EqualsWithTolerance
- HsVtoArgb
- Scale
- Fit
- DeepCopy (reflection-based deep clone, no dependencies)
and many more.
Extensions for System.Random (NextBool, NextChar, NextString etc.) moved to StrongRandom
| 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 is compatible. 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
- StandardInterfaces (>= 3.1.0)
-
net8.0
- StandardInterfaces (>= 3.1.0)
NuGet packages (5)
Showing the top 5 NuGet packages that depend on Extensions.Standard:
| Package | Downloads |
|---|---|
|
OnTheFlyStats
Do you find yourself adding numbers to the collection and recalculating mean each time? This package is intended to solve the issue. By computing the base terms with each new observation, the retrieval of statistics at any time is O(1). The statistics are always ready and calculating mean for next element does not require iterating over whole collection. On-the-fly calculation of mean, variance, standard deviation, ZScore, sum, min, max and more supported. Create Confusion Matrixes using ReceiverOperatorCharacteristic class, that will calculate Accuracy etc. on the fly. |
|
|
Stocks.Data.Infrastructure
Infrastracture for persistance of stock quotes in daily format (open, high, low, close) and import from CSV files in .NET Standard 2.1 |
|
|
Stocks.Data.Model
Model for persistance of stock quotes in daily format (open, high, low, close) .NET Standard 2.0 |
|
|
MiniDiagnostics
Get CPU and RAM usage, check process name and whether it's elevated etc. |
|
|
LoggerLite.EventLog
Log your precious error info, warnings and information to Windows Event Log. |
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 12.0.0 | 35 | 6/14/2026 |
| 11.0.0 | 42 | 6/14/2026 |
| 10.0.0 | 42 | 6/13/2026 |
| 9.1.0 | 1,822 | 12/9/2024 |
| 9.0.0 | 381 | 11/20/2024 |
| 8.3.0 | 285 | 11/20/2024 |
| 8.1.0 | 5,654 | 2/27/2023 |
| 8.0.0 | 434 | 2/25/2023 |
| 7.0.0 | 1,091 | 1/30/2022 |
| 6.0.1 | 872 | 11/21/2021 |
| 6.0.0 | 627 | 2/20/2021 |
| 5.1.0 | 574 | 2/20/2021 |
| 5.0.0 | 581 | 2/20/2021 |
| 4.0.0 | 1,583 | 9/21/2018 |
| 3.1.0 | 3,311 | 6/15/2018 |
| 3.0.1 | 2,498 | 4/23/2018 |
| 3.0.0 | 1,545 | 4/11/2018 |
| 2.1.0 | 1,594 | 2/12/2018 |
Breaking changes:
- Area() now returns a non-negative magnitude (was the signed shoelace area, negative for clockwise polygons).
- MaxIndex() and FindMinMaxInOn() now throw InvalidOperationException on an empty sequence (matching LINQ Max/Min). Scale() on an empty sequence still returns empty.
- AsTime(TimeSpan) no longer leaves a trailing ", " separator and returns "0 ms" for TimeSpan.Zero (consistent with the AsTime(milliseconds) overload).
- Removed the redundant Scale<T>(IEnumerable<double>) overload whose type parameter was unused (use the non-generic Scale()).