Universal.Common
8.1.2
See the version list below for details.
dotnet add package Universal.Common --version 8.1.2
NuGet\Install-Package Universal.Common -Version 8.1.2
<PackageReference Include="Universal.Common" Version="8.1.2" />
<PackageVersion Include="Universal.Common" Version="8.1.2" />
<PackageReference Include="Universal.Common" />
paket add Universal.Common --version 8.1.2
#r "nuget: Universal.Common, 8.1.2"
#:package Universal.Common@8.1.2
#addin nuget:?package=Universal.Common&version=8.1.2
#tool nuget:?package=Universal.Common&version=8.1.2
Universal.Common
Support utilities and extensions meant to extend the default functionality from the base class library.
Quickstart
BitSequence
Utility for as-is bit manipulations.
BitSequence bs1 = new BitSequence("10001010"); // Binary representation in string.
BitSequence bs2 = new BitSequence(new bool[] { true, false, true }); // As booleans.
BitSequence bs3 = bs1 & "11110000"; // Bitwise and, implicit conversion from binary representation string.
BitStream
Utility to perform bit-level operations on System.IO.Stream.
using (BitStream bitStream = new BitStream(stream))
{
uint value = bitStream.ReadUInt32(4); // Reads 4 bits from the stream and interprets it as an unsigned integer, padding if necessary.
}
UriBuilder
Derived from System.UriBuilder, this class provides a fluent API to configure segments and queries.
UriBuilder uriBuilder = new UriBuilder("http://www.myhost.com");
uriBuilder
.AddSegments("api", "Product", 1)
.AddQuery("key", "value");
// "https://www.myhost.com/api/Product/1?key=value"
ZigZag
Static class that encodes arrays to matrices and vice-versa.
int[,] matrix = new int[,] { { 0, 1 }, { 2, 3 } };
int[] array = ZigZag.ToArray(matrix); // [0, 1, 2, 3]
| 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. 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 is compatible. |
| .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
- No dependencies.
-
.NETStandard 2.1
- No dependencies.
NuGet packages (25)
Showing the top 5 NuGet packages that depend on Universal.Common:
| Package | Downloads |
|---|---|
|
Universal.Common.Reflection
Class library for performing advanced operations with types, dynamic objects, expressions, and reflection. |
|
|
Universal.Common.Net.Http
Class library to build clients and work with HTTP web services. |
|
|
Universal.Common.Serialization
Class library with base objects that provide serializable to and from XML and JSON strings and binary serialization using the native binary formatter. |
|
|
Universal.Common.Mathematics
Class library implementing advanced mathematical algorithms, transforms, and time series manipulations. Implementations favour simplicity and correctness. |
|
|
Universal.Common.Collections
Class library with specialized collections to model graphs, queues, multi-value dictionaries and such. |
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 8.3.4 | 2,831 | 8/14/2025 |
| 8.3.3 | 8,846 | 2/22/2025 |
| 8.3.2 | 327 | 2/22/2025 |
| 8.3.1 | 345 | 2/16/2025 |
| 8.3.0 | 224 | 2/15/2025 |
| 8.2.5 | 3,490 | 10/17/2024 |
| 8.2.4.1 | 3,567 | 7/15/2024 |
| 8.2.4 | 18,463 | 9/25/2023 |
| 8.2.3 | 2,816 | 6/8/2023 |
| 8.2.2 | 2,712 | 11/23/2022 |
| 8.2.1 | 546 | 11/22/2022 |
| 8.2.0 | 14,433 | 9/14/2022 |
| 8.1.2 | 32,498 | 10/24/2021 |
| 8.1.1 | 673 | 10/23/2021 |
| 8.1.0 | 657 | 10/23/2021 |
| 8.0.0 | 16,171 | 10/13/2021 |
| 7.7.1 | 7,786 | 8/24/2021 |
| 7.7.0 | 627 | 8/24/2021 |
| 7.6.2 | 653 | 8/19/2021 |
| 7.6.1 | 13,583 | 6/17/2021 |
Fixed implementation of BitSequence's GetHashCode to return equal hash codes for equal sequences.