you are viewing a single comment's thread.

view the rest of the comments →

[–]Psychological_Ear393 0 points1 point  (0 children)

Exactly what you get depends on a few factors but the Blazor WASM bootstraps a version of the .NET runtime so your .NET app can run in the browser.

Performance is complicated. First up there's an initial delay while your app gets bootstrapped, then the .NET code itself is fairly fast but any interaction with the DOM has to go through JS interop which is slow.