Click here to Skip to main content
15,898,628 members
Articles / Programming Languages / C#

Explain some basics about Microsoft Blazor technology via a full blown web browser game

1 Jan 2023CPOL7 min read 2K   2
Blazor WebAssembly allows client browser to execute compiled code on client side once downloaded. So you can program very complex game or business logics in C# (or C/C++) in addition to JavaScript.
Recently, I got involved in an indie web game project. It takes advantage one important capability of Microsoft Blazor: once loaded, the browser game can totally run within its client browsing session, no server hosting actually needed after that point. Technically speaking, once user starts playing the browser game, even with the Internet broken situation, the gamer can still play without any disruption. (Given that this web game is solo game, not multi-player game)
We're sorry, but the article you are trying to view was deleted at 12 Jan 2023.

Please go to the C# Table of Contents to view the list of available articles in this section.