Authentication & Authorization .NET Example
As promised in this article, we will now see how to properly authenticate and later authorize users in a .NET environment. Continue reading on Medium » As promised in this…
IT, Techno, Auto, Bike, Money
As promised in this article, we will now see how to properly authenticate and later authorize users in a .NET environment. Continue reading on Medium » As promised in this…
Optimization involves choosing Span<T> over Arrays for manipulating memory regions. Continue reading on C# Programming » <img src="https://cdn-images-1.medium.com/max/1960/1*p7A4_lBJvk16cN_iWJawOQ.png" title="Day 23 of 30-Day .NET Challenge: Span over Arrays” /> Optimization involves…
AutoMapper is a library created by Jimmy Bogard that performs the simple task of mapping one object (class) to another, so much so that… Continue reading on C# Programming »…
The last post was a short introduction how to work with files in Azure Blob Storage. C# — work with Azure BLOB storage files Continue reading on Medium » The last post…
For many years, developers using Microsoft Visual Studio have encountered challenges with the traditional solution file format (.sln)… Continue reading on Medium » For many years, developers using Microsoft Visual…
Polymorphism mean many forms that we usually archived with static binding and dynamic binding. Continue reading on Medium » Polymorphism mean many forms that we usually archived with static binding…
In C#, a static is a keyward that is used with fields, methods, properties and classes when we make these members static they are globally… Continue reading on Medium »…
In this blog let us see how we can use Serilog Enrichers for dynamically add useful and contextual properties to logs. We have already… Continue reading on CodeNx » In…
Here are this week’s top links from the Morning Dew. Hit the link at the end of this email to view the full posts on my blog. Thanks for… Continue…
ASP.NET Core’s middleware architecture offers a powerful way to build and configure the HTTP request pipeline in your applications. Continue reading on Medium » ASP.NET Core’s middleware architecture offers a…
Introduction Continue reading on Medium » IntroductionContinue reading on Medium » Read More Dotnet on Medium #dotnet
Explore the functionality and benefits of Intellicode in Visual Studio, a powerful tool that enhances the coding experience for C#… Continue reading on ByteHide » Explore the functionality and benefits…
Neste artigo abordaremos o uso de concorrência e paralelismo na plataforma dotnet. Continue reading on Medium » Neste artigo abordaremos o uso de concorrência e paralelismo na plataforma dotnet.Continue reading…
1. Object Initialization Syntax: This snippet simplifies the process of creating an object and initializing its properties. Continue reading on Medium » 1. Object Initialization Syntax: This snippet simplifies the…
ArrayPool<T> , a mechanism to recycle temporary buffers and optimize performance by reducing garbage collection cycles. Continue reading on C# Programming » ArrayPool<T> , a mechanism to recycle temporary buffers…
Heap allocations aren’t entirely bad but when an object is allocated on a heap it contributes to the garbage collection cycles which in… Continue reading on C# Programming » Heap…
The article demonstrates the importance of using StringComparison options for efficient string comparison in .NET Continue reading on C# Programming » The article demonstrates the importance of using StringComparison options…
Boosting productivity in .NET development is paramount for ensuring efficient software delivery in today’s fast-paced tech landscape. With… Continue reading on Medium » Boosting productivity in .NET development is paramount…
Discover the best Visual Studio Extensions you can find in 2024 to launch all your new projects! 🚀 Continue reading on ByteHide » Discover the best Visual Studio Extensions you…
Queue is related to System.Collections.Generic namespace. In, Queue Elements are added to the back (enqueue) and removed from the front… Continue reading on Medium » Queue is related to System.Collections.Generic…