| id | quick-start |
|---|---|
| title | Five-minute quick start |
| sidebar_position | 4 |
| diataxis | tutorial |
| persona | new developer |
import CodeBlock from '@theme/CodeBlock'; import quickStart from '!!raw-loader!../_examples/quick-start/Program.cs';
You will create a console app, install Humanizer, and produce one deterministic duration. You need a .NET 8 or newer SDK.
Create the project and install Humanizer 4 from NuGet:
dotnet new console --name HumanizerQuickStart
cd HumanizerQuickStart
dotnet add package Humanizer --version 4.0.0Replace Program.cs with the verified source:
{quickStart}
Run it:
dotnet runThe program prints exactly:
2 minutes
The assertion fails immediately if the selected package produces a different value.
Many Humanizer operations use the current culture or UI culture when no culture is supplied. Set both explicitly in examples, tests, background work, and any operation whose output must be predictable.
This source is compiled and run during documentation validation. Historical snapshots retain the same source and resolve their declared package version.