Tag
csharp
distributed systemsBuilding a gRPC Client in .NET
Build a .NET gRPC client from a shared .proto contract, generate the client stubs, call the server, and inspect the response.
Updated · originally
distributed systemsBuilding a gRPC Server in .NET
Build a gRPC server in .NET from a Protocol Buffers contract, implement the service, handle common setup errors, and test it with grpcurl.
Updated · originally
c#How to ramp up in a new codebase with NDepend
Use NDepend dependency graphs, code metrics, and static analysis to understand an unfamiliar .NET codebase and locate technical debt.
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#
Understand nullable value types in C#, how Nullable<T> represents missing values, and how to inspect and safely access the underlying 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
Pre-configure ASP.NET Core services that need dependencies before registration by using an explicit factory and service-provider setup.