- Blazor WebAssembly can run client-side C# code directly in the browser.
- The Blazor application, as well as its dependencies and the .NET runtime, are all downloaded to the browser.
- The application runs on the browser’s UI thread directly. The same method handles both UI notifications and event management.
- We can re-use code and libraries from the server-side parts of the application while .NET runs on WebAssembly.

Share with