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"
#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 (31)
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.Android
Class library for accelerating Xamarin.Android development. Note: If you encounter layout inflation exceptions (could be masked as NotFoundException, or some issue with text_color_secondary.xml etc), make sure you define colorControlNormal and use a style with that attribute defined. |
|
Universal.Common.Mathematics
Class library implementing advanced mathematical algorithms, transforms, and time series manipulations. Implementations favour simplicity and correctness. |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last Updated |
---|---|---|
8.3.3 | 5,309 | 2/22/2025 |
8.3.2 | 191 | 2/22/2025 |
8.3.1 | 205 | 2/16/2025 |
8.3.0 | 114 | 2/15/2025 |
8.2.5 | 1,633 | 10/17/2024 |
8.2.4.1 | 1,461 | 7/15/2024 |
8.2.4 | 17,545 | 9/25/2023 |
8.2.3 | 1,380 | 6/8/2023 |
8.2.2 | 2,570 | 11/23/2022 |
8.2.1 | 421 | 11/22/2022 |
8.2.0 | 11,350 | 9/14/2022 |
8.1.2 | 23,326 | 10/24/2021 |
8.1.1 | 512 | 10/23/2021 |
8.1.0 | 517 | 10/23/2021 |
8.0.0 | 14,001 | 10/13/2021 |
7.7.1 | 7,378 | 8/24/2021 |
7.7.0 | 450 | 8/24/2021 |
7.6.2 | 495 | 8/19/2021 |
7.6.1 | 13,096 | 6/17/2021 |
7.6.0 | 2,324 | 6/3/2021 |
7.5.7 | 2,979 | 4/30/2021 |
7.5.6 | 496 | 4/29/2021 |
7.5.5 | 746 | 4/13/2021 |
7.5.4 | 9,377 | 3/31/2021 |
7.5.3 | 6,236 | 3/21/2021 |
7.5.2 | 1,353 | 3/15/2021 |
7.5.1 | 939 | 2/16/2021 |
7.5.0 | 32,898 | 2/5/2021 |
7.4.6 | 549 | 2/2/2021 |
7.4.5.1 | 2,042 | 1/15/2021 |
7.4.5 | 1,171 | 1/13/2021 |
7.4.4 | 1,728 | 1/7/2021 |
7.4.3 | 2,072 | 12/16/2020 |
7.4.2.1 | 620 | 12/15/2020 |
7.4.2 | 592 | 12/9/2020 |
7.4.1 | 5,525 | 11/26/2020 |
7.4.0 | 582 | 11/26/2020 |
7.3.5 | 2,874 | 11/23/2020 |
7.3.4 | 1,838 | 11/11/2020 |
7.3.3 | 612 | 11/11/2020 |
7.3.2 | 1,406 | 11/1/2020 |
7.3.1.1 | 4,768 | 10/19/2020 |
7.3.1 | 601 | 10/15/2020 |
7.3.0 | 596 | 10/15/2020 |
7.2.2 | 3,557 | 9/29/2020 |
7.2.1 | 729 | 9/29/2020 |
7.2.0 | 599 | 9/29/2020 |
7.1.1.1 | 663 | 9/28/2020 |
7.1.1 | 699 | 9/25/2020 |
7.1.0 | 1,837 | 9/2/2020 |
7.0.0 | 6,285 | 8/24/2020 |
6.4.7 | 681 | 8/21/2020 |
6.4.6 | 672 | 8/21/2020 |
6.4.5 | 20,243 | 5/21/2020 |
6.4.4 | 1,951 | 5/12/2020 |
6.4.3 | 2,138 | 4/23/2020 |
6.4.2 | 631 | 4/20/2020 |
6.4.1.2 | 18,663 | 3/20/2020 |
6.4.1.1 | 701 | 3/20/2020 |
6.4.1 | 682 | 3/20/2020 |
6.4.0 | 5,958 | 2/25/2020 |
6.3.5 | 1,310 | 2/21/2020 |
6.3.4 | 747 | 2/21/2020 |
6.3.3 | 3,746 | 2/11/2020 |
6.3.2 | 744 | 2/11/2020 |
6.3.1.1 | 7,257 | 1/23/2020 |
6.3.0 | 4,297 | 12/18/2019 |
6.2.7 | 2,243 | 12/17/2019 |
6.2.6 | 1,372 | 12/4/2019 |
6.2.5 | 879 | 12/4/2019 |
6.2.4 | 3,510 | 12/1/2019 |
6.2.3 | 10,468 | 10/25/2019 |
6.2.2 | 3,574 | 10/8/2019 |
6.2.1 | 1,130 | 10/7/2019 |
6.2.0.1 | 5,460 | 9/25/2019 |
6.2.0 | 1,846 | 9/20/2019 |
6.1.5 | 3,226 | 9/16/2019 |
6.1.4.1 | 1,753 | 9/9/2019 |
6.1.4 | 2,195 | 9/3/2019 |
6.1.3 | 710 | 9/2/2019 |
6.1.2 | 897 | 8/28/2019 |
6.1.1 | 7,644 | 7/9/2019 |
6.1.0.1 | 30,047 | 7/5/2019 |
6.1.0 | 16,960 | 5/7/2019 |
6.0.6 | 1,895 | 5/3/2019 |
6.0.5 | 1,412 | 5/2/2019 |
6.0.4 | 4,792 | 4/24/2019 |
6.0.3 | 1,069 | 4/24/2019 |
6.0.2 | 7,884 | 3/22/2019 |
6.0.1.2 | 2,450 | 3/12/2019 |
6.0.1.1 | 930 | 3/12/2019 |
6.0.1 | 938 | 3/11/2019 |
6.0.0 | 1,718 | 3/6/2019 |
5.3.6 | 867 | 3/5/2019 |
5.3.5 | 835 | 3/5/2019 |
5.3.4 | 1,922 | 3/4/2019 |
5.3.3 | 1,541 | 2/28/2019 |
5.3.2 | 1,362 | 2/27/2019 |
5.3.1.1 | 959 | 2/25/2019 |
5.3.1 | 850 | 2/25/2019 |
5.3.0 | 811 | 2/25/2019 |
5.2.1 | 3,419 | 2/16/2019 |
5.2.0.1 | 3,909 | 2/7/2019 |
5.1.8 | 885 | 2/7/2019 |
5.1.7.1 | 1,119 | 1/30/2019 |
5.1.7 | 898 | 1/30/2019 |
5.1.6.1 | 908 | 1/24/2019 |
5.1.6 | 870 | 1/23/2019 |
5.1.5 | 877 | 1/23/2019 |
5.1.4.2 | 934 | 1/18/2019 |
5.1.3 | 1,627 | 1/14/2019 |
5.1.2 | 7,718 | 1/8/2019 |
5.1.1.1 | 911 | 1/8/2019 |
5.1.1 | 894 | 1/6/2019 |
5.1.0 | 1,518 | 1/2/2019 |
5.0.2 | 929 | 12/31/2018 |
5.0.1.1 | 909 | 12/31/2018 |
5.0.1 | 898 | 12/31/2018 |
5.0.0.1 | 1,041 | 12/14/2018 |
5.0.0 | 2,202 | 12/10/2018 |
4.2.5 | 971 | 11/23/2018 |
4.2.4 | 986 | 11/23/2018 |
4.2.3.1 | 955 | 11/22/2018 |
4.2.3 | 944 | 11/22/2018 |
4.2.2.2 | 1,217 | 11/19/2018 |
4.2.2.1 | 8,330 | 10/2/2018 |
4.2.2 | 1,040 | 10/1/2018 |
4.2.1.2 | 1,056 | 10/1/2018 |
4.2.1.1 | 1,032 | 9/27/2018 |
4.2.1 | 968 | 9/26/2018 |
4.2.0.5 | 1,030 | 9/26/2018 |
4.2.0.4 | 1,012 | 9/25/2018 |
4.2.0.3 | 1,041 | 9/25/2018 |
4.2.0.2 | 1,060 | 9/25/2018 |
4.2.0.1 | 1,022 | 9/25/2018 |
4.2.0 | 1,147 | 9/24/2018 |
4.1.0 | 992 | 9/21/2018 |
4.0.0.6 | 1,029 | 9/18/2018 |
4.0.0.5 | 1,069 | 9/18/2018 |
4.0.0.4 | 1,039 | 9/17/2018 |
4.0.0.3 | 3,360 | 9/7/2018 |
4.0.0.2 | 1,311 | 9/4/2018 |
4.0.0.1 | 1,418 | 9/4/2018 |
4.0.0 | 4,206 | 8/30/2018 |
3.2.0 | 2,924 | 8/28/2018 |
3.1.0 | 1,036 | 8/28/2018 |
3.0.6 | 2,619 | 8/27/2018 |
3.0.5 | 1,020 | 8/27/2018 |
3.0.4 | 1,057 | 8/27/2018 |
3.0.3 | 1,060 | 8/24/2018 |
3.0.2 | 1,260 | 8/24/2018 |
3.0.1.2 | 1,034 | 8/23/2018 |
3.0.1.1 | 1,090 | 8/21/2018 |
3.0.1 | 1,055 | 8/21/2018 |
3.0.0 | 1,971 | 8/16/2018 |
2.2.1 | 1,129 | 8/15/2018 |
2.2.0 | 1,081 | 8/14/2018 |
2.1.0 | 1,081 | 8/13/2018 |
2.0.2 | 1,166 | 8/7/2018 |
2.0.1 | 1,499 | 5/10/2018 |
2.0.0 | 2,088 | 4/26/2018 |
1.5.3.7 | 3,316 | 1/27/2018 |
1.5.3.6 | 1,384 | 1/15/2018 |
1.5.3.5 | 1,360 | 1/8/2018 |
1.5.3.4 | 1,361 | 1/3/2018 |
1.5.3.3 | 1,383 | 1/3/2018 |
1.5.3.2 | 1,370 | 12/27/2017 |
1.5.3.1 | 1,392 | 12/25/2017 |
1.5.3 | 1,329 | 12/25/2017 |
1.5.2 | 1,353 | 12/24/2017 |
1.5.1 | 1,375 | 12/23/2017 |
1.5.0 | 1,324 | 12/22/2017 |
1.4.7 | 1,138 | 12/2/2017 |
1.4.6 | 2,770 | 11/28/2017 |
1.4.5 | 1,330 | 11/28/2017 |
1.4.0 | 1,398 | 11/12/2017 |
1.3.5 | 4,062 | 11/8/2017 |
1.3.4 | 1,400 | 11/8/2017 |
1.3.3 | 1,466 | 11/2/2017 |
1.3.2 | 1,394 | 11/2/2017 |
1.3.1 | 1,429 | 9/12/2017 |
1.3.0 | 1,342 | 8/26/2017 |
1.2.1 | 1,228 | 8/23/2017 |
1.2.0 | 1,300 | 8/17/2017 |
1.1.1 | 1,225 | 8/17/2017 |
1.1.0 | 1,227 | 8/17/2017 |
1.0.0 | 2,040 | 8/12/2017 |
Fixed implementation of BitSequence's GetHashCode to return equal hash codes for equal sequences.