This console application demonstrates the dynamic Any type from CSharpEssentials.Any.
| Feature | Description |
|---|---|
| Any Type | Store any value in a single type with Any.From() |
| Type Checking | Is<T>() to verify the underlying type |
| Casting | As<T>() with safe fallback to default |
| AnyActionResult | Generic success/failure result with any payload |
| AnyT2 – AnyT8 | Typed unions for 2 to 8 different types |
cd examples/Examples.Any
dotnet run