Tag
csharp
distributed systemsBuilding a gRPC Client in .NET
In this article, we will take a look at how to create a simple gRPC client with .NET and communicate with a server. This is the final post of the blog…
distributed systemsBuilding a gRPC Server in .NET
In this article, we will look at how to build a simple web service with gRPC in .NET. We will keep our changes to minimal and leverage the same…
c#How to ramp up in a new codebase with NDepend
Reading code is good. But, visualising code is even better. I recently wrapped up a gig where we had to perform a .NET Core upgrade (from .NET…
asp.net coreHaving Fun with Microsoft IoC Container for .NET Core
Wire up Microsoft's built-in dependency injection container from an empty console app, then read the DI extension source to see how it resolves.
c#Understanding Nullable Value Types in C#
I recently started picking out different topics that I like to learn more about. One such thing I wanted to have a closer look at is "Nullable value…
c#Demystifying Async & Await in C#
What async and await really do in C#, why a Task is not a thread, and which common misconceptions about the two cause the most trouble.
asp.net coreHow to Pre-Configure Services Before Registering with ASP.NET Core's Built-in Service Container
In ASP.NET, if you are using the default DI service container, registering services is done in the ConfigureServices(IServiceCollection) method in…