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.CoreCategories
String Extensions
Helpers for case conversion, empty checks, joining, and common string operations.
Enumerable Extensions
Methods for working with collections including Fill, Each, and AddRange variants.
Reflection Extensions
Type inspection helpers for checking interface implementation, generating readable type names, and working with generics.
Namespace
All extension methods live in the JasperFx.Core or JasperFx.Core.Reflection namespaces:
csharp
using JasperFx.Core;
using JasperFx.Core.Reflection;