Welcome to Bryan’s Blog
Latest from the Blog
For the record!
One of my favorite features of the C# language may have been released with 9.0. I’m talking about records. What is a record you ask? Records are a new type introduced in C# 9.0. You can think of it as the in between of a struct and a class. A record is a reference type,…
Migrate .Net 3.1 Blazor app to .Net 5
On November November 10th, 2020 Microsoft the release of .Net 5.0. With .Net 5.0’s release we received a lot of awesome updates to Blazor. In order for us to take advantage of these recent updates we will need to migrate our current app to the new version. We are fortunate that this migration, for our…