DamianEdwards / RazorSlices

Lightweight Razor-based templates for ASP.NET Core without MVC, Razor Pages, or Blazor.
MIT License
297 stars 12 forks source link

Add RazorSlice.Write() overloads for other primitive value types #5

Closed DamianEdwards closed 1 year ago

DamianEdwards commented 1 year ago

To optimize rendering of double, decimal, char, DateTime, etc. using Utf8Formatter, in the same way as is done already for int and int? values.

DamianEdwards commented 1 year ago

This is done now.