Explore >> Select a destination


You are here

www.code4it.dev
| | nodogmablog.bryanhogan.net
9.1 parsecs away

Travel
| | Full source code here. A few weeks ago I wrote a post about using dependency injection to pick between two implementations of an interface. It was a solution I was not very happy with because it meant I had to new up the implementations inside a factory or I had to use service collection to instantiate all implementations of the interface and then use a piece of code to return the one the was wanted.
| | claudiobernasconi.ch
6.5 parsecs away

Travel
| | Building APIs has become simpler with ASP.NET Core 6. Learn a simple way to create integration tests for ASP.NET Core 6 WebAPI applications.
| | www.claudiobernasconi.ch
4.9 parsecs away

Travel
| | Building APIs has become simpler with ASP.NET Core 6. Learn a simple way to create integration tests for ASP.NET Core 6 WebAPI applications.
| | csharp.christiannagel.com
56.7 parsecs away

Travel
| The HttpClient class can be easily used in a way how it's not meant to be. While this class is disposable, using it with the using statement is often not the best choice. Disposing the HttpClient, the underlying socket is not immediately released. The HttpClient class is designed to be reused for multiple requests. Having...