PlainBytes.System.Extensions 1.1.0

dotnet add package PlainBytes.System.Extensions --version 1.1.0
                    
NuGet\Install-Package PlainBytes.System.Extensions -Version 1.1.0
                    
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="PlainBytes.System.Extensions" Version="1.1.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="PlainBytes.System.Extensions" Version="1.1.0" />
                    
Directory.Packages.props
<PackageReference Include="PlainBytes.System.Extensions" />
                    
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 PlainBytes.System.Extensions --version 1.1.0
                    
#r "nuget: PlainBytes.System.Extensions, 1.1.0"
                    
#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=PlainBytes.System.Extensions&version=1.1.0
                    
Install PlainBytes.System.Extensions as a Cake Addin
#tool nuget:?package=PlainBytes.System.Extensions&version=1.1.0
                    
Install PlainBytes.System.Extensions as a Cake Tool

<p align="center"> <img width="128" align="center" src="assets/system-extensions.png" > </p>

<h1 align="center"> System.Extensions </h1>

<p align="center"> Collection of extension method for the BCL to ease their usage. Please feel free to submit bits that are not yet included. </p>

GitHub Nuget CodeFactor GradeBuild Validation <p align="center">

</p>

Examples

String

     var stringValue = "text";

    _ = stringValue.IsNullOrEmpty();
    _ = stringValue.IsNullOrWhiteSpace();

    _ = stringValue.HasValue();
    _ = stringValue.HasActualValue();

    _ = "{0} {1}".FormatWith(1, 2);

Numeric types


    // Int, uint, long, ulong, byte
    var number = 123;

    _ = intValue.Clamp(0, 100);
    _ = intValue.ToBool(); // each type has its revers bool to number.

Double

    var doubleValue = 12.34;

    _ = doubleValue.Clamp(0, 100);
    _ = doubleValue.IsInfinity();
    _ = doubleValue.IsNegativeInfinity();
    _ = doubleValue.IsPositiveInfinity();
    _ = doubleValue.IsNaN();
    _ = doubleValue.IsEqual(34.12,tolerance: 0.1); //two NaNs are also evaluated as equals

Collection access

    var collection = new[] {1, 2, 3};
    
    _ = collection.HasIndex(4);
    _ = collection.AtIndexOrDefault(4);
    _ = collection.AtIndexOrFallback(4, -1);
    _ = collection.IsEmpty();

    var directory = new Dictionary<int, int>();

    _ = directory.AtKeyOrFallback(4, -1);

Iterators

    // Extensions for IList<T>, IEnumerable<T> and Enumerable

    var collection = new[] {1, 2, 3};

    collection.For((index, value) => {});
    collection.ForEach(value => {});

    _ = collection.SelectWithIndex((index, value) => value);
    _ = collection.SelectTypeOf<double>();

    var secondCollection = new[] {4, 5};

    _ = collection.Append(secondCollection);

Install

Package manger

Install-Package PlainBytes.System.Extensions

CLI

dotnet add package PlainBytes.System.Extensions

Target platform: .Net Standard 1.0 and above.

Product Compatible and additional computed target framework versions.
.NET 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 is compatible.  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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net8.0

    • No dependencies.
  • net9.0

    • No dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.1.0 170 14 days ago
1.0.0 879 5 months ago
0.8.0 4,380 8/27/2023
0.7.0 224 5/2/2023
0.6.0.2 2,884 10/27/2022
0.6.0.1 499 10/27/2022
0.6.0 4,112 4/25/2022
0.5.0.1 1,051 8/9/2021
0.5.0 455 8/9/2021
0.4.0 428 5/20/2021
0.2.0 450 4/23/2021
0.1.3 472 2/7/2021
0.1.2 525 12/13/2020
0.1.1 545 12/5/2020
0.1.0 536 12/5/2020