CSharp Models From TypeScript Interfaces

Despite finding many of the reverse, I couldn't find a Typescript to C# code converter to convert ts interfaces to C# models. So I built this fragile version of my own using typescript-parser and browserify. It's entirely client-side since github.io doesn't have node, and does not send your code anywhere.... [Read More]

Registering Services Automatically with Blazor

While working on a new Blazor project recently, I noticed that the number of services was starting to grow dramatically. Following the basic tutorials and adding a line in the Startup Configure method like services.AddSingleton<Type>(); for each service was quickly becoming a mess. Looking around the internet for a solution... [Read More]
Tags: C# Blazor