I mentioned to you in the previous article that we can create many different types of applications in C#. From console applications through desktop and mobile applications, to web applications. When creating a new project, we [...]
If you’re just starting out in programming, you’re probably wondering which programming language to choose. Is there a language that will allow you to learn programming easily, but is also good enough to meet the demands of [...]
In today's article, I would like to introduce you to one of the most interesting and profitable fields on the job market, namely the work of a programmer. Have you ever wondered why more and more people decide to take this [...]
Have you ever wondered what the best way to learn programming is? Of course, learning through action, i.e. practice, programming itself and creating applications. This way of learning gives the best results. The ASP.NET Core [...]
In today's article, I will introduce you to a technology that is one of the most popular choices for programmers and companies around the world - ASP.NET Core. I will present you with 20 reasons why it is worth learning this [...]
In the previous article I showed you how to separate the view code from the C# code. In this lesson we will work on the same project (default Blazor Web App template) and will show you how to style, how to add CSS files in Blazor [...]
If you create a new Blazor Web App project (you can choose any rendering mode and any rendering location), then in the template, e.g. in the Counter.razor component, you can see that in one file we have both razor code, which is [...]
With .NET 8, a new template called Blazor Web App was created, and this is the cherry on the cake when it comes to Blazor. In this article, I will describe what Blazor Web App is and how to create applications here. Introduction. In [...]
With .NET 8, a new rendering mode called Server Side Rendering (SSR) has appeared. The name itself can be a bit confusing with Blazor Server. However, Blazor Server Side Rendering and Blazor Server are two different things [...]
The second hosting model in Blazor is the so-called Blazor WebAssembly, or WASM for short. Initially, Blazor only provided these 2 models, but since .NET 8 it has improved it and added more. In this article, I will introduce you to [...]