Skip to content

Commit d175c83

Browse files
committed
BzDump Readme, v0.5.0
1 parent 48ad007 commit d175c83

File tree

2 files changed

+14
-1
lines changed

2 files changed

+14
-1
lines changed

BlazingDev.BlazorToolkit/BlazingDev.BlazorToolkit.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<TargetFramework>net8.0</TargetFramework>
55
<Nullable>enable</Nullable>
66
<ImplicitUsings>enable</ImplicitUsings>
7-
<Version>0.4.0</Version>
7+
<Version>0.5.0</Version>
88
<Authors>devritter</Authors>
99
<Description>useful components and utilities for Blazor developers</Description>
1010
<PackageReadmeFile>README.md</PackageReadmeFile>

README.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,19 @@
22

33
Useful components and utilities for Blazor developers
44

5+
## BzDump
6+
7+
BzDump is a powerful UI component that displays all properties of a given object using reflection —
8+
similar to what you see in a debugger's inspect variable view in Visual Studio. \
9+
It provides a structured and readable view of an object's state at runtime, making it an invaluable tool for diagnostics and troubleshooting. \
10+
By enabling object inspection without requiring an attached debugger, you can boost your productivity and get deeper insight into application behavior during live execution or in production-like environments.
11+
12+
```xml
13+
<BzDump Value="yourStateVariable" />
14+
<BzDump Value="CultureInfo.CurrentCulture" />
15+
<BzDump Value="resultFromRestApiCall" />
16+
```
17+
518
## BzComponentBase
619

720
Your new component base class with:

0 commit comments

Comments
 (0)