Top Microsoft Blazor Technical Questions
What is Blazor? Blazor is a open source .Net based UI framework used to create Single Page Applications (SPA) using C# language (instead of javascript). It runs in most of the modern browsers as it is build on open web standards like Webassembly. What are the two hosting model provided by Blazor? Blazor Web Assembly Blazor Server What are the advantages of Blazor? The UI code can be developed using feature rich C# instead of javascript which makes the development easier. The Server side C# code (like Model classes, Business Rules etc) can be reused at the client side. As it is .Net based framework, the code developed using Blazor can leverage all the existing .Net libraries/ API. All modern browsers including mobile browsers, runs Blazor Runs in a secured sandbox environment within the Browser. It is as fast as running native applications of the browser's operating system. Blazor is supported by...