Skip to content

Files

27 lines (20 loc) · 517 Bytes

README.md

File metadata and controls

27 lines (20 loc) · 517 Bytes

DotNetExtensions

This is a collection of extension methods for .NET Core. The goal is to provide a set of useful extension methods that are not included in the .NET Core framework.

Installation

You can install the package via NuGet:

dotnet add package DotNetExtensions

Usage

using DotNetExtensions;

public class Example
{
    public void ExampleMethod()
    {
        var myNumber = 12345;
        var numberOfDigits = myNumber.NumberOfDigits(); // numberOfDigits = 5
    }
}