Skip to content

Utility Extensions

JasperFx.Core provides a collection of extension methods used throughout the Critter Stack. These are general-purpose helpers available in any .NET project.

Installation

If you only need the extensions without the full JasperFx framework:

bash
dotnet add package JasperFx.Core

Categories

String Extensions

Helpers for case conversion, empty checks, joining, and common string operations.

Read more

Enumerable Extensions

Methods for working with collections including Fill, Each, and AddRange variants.

Read more

Reflection Extensions

Type inspection helpers for checking interface implementation, generating readable type names, and working with generics.

Read more

Namespace

All extension methods live in the JasperFx.Core or JasperFx.Core.Reflection namespaces:

csharp
using JasperFx.Core;
using JasperFx.Core.Reflection;

Next Steps

Released under the MIT License.