dotnet / maui

.NET MAUI is the .NET Multi-platform App UI, a framework for building native device applications spanning mobile, tablet, and desktop.
https://dot.net/maui
MIT License
21.63k stars 1.62k forks source link

Remove a few allocations from `GridLengthTypeConverter` #22095

Closed MartyIX closed 1 week ago

MartyIX commented 2 weeks ago

Description of Change

Use Spans to avoid allocations. I don't believe this will have any significant effect though.

Issues Fixed

Contributes to #21787

symbiogenesis commented 1 week ago

see my existing PR here: https://github.com/dotnet/maui/pull/20048

symbiogenesis commented 1 week ago

It only affects things on the order of microseconds. Allocations are improved, though.

MartyIX commented 1 week ago

I see.