The tutorial to rule ALL tutorials on structures (struct) in C#
The struct
keyword in C# is used for creating a structure
.
A structure
is similar to a class and is used to hold values of different types under one home.
However, despite this similarity to a class, there are subtle (but important) differences explored in this article.

Dependency injection and configuration of an ASP.NET CORE 3.x console app
Dependency Injection is an increasingly popular and prominent design pattern in modern application development.
ASP.NET Core 3.x is platformed on top of the generic host. A versatile object that let's us encapsulates an app's resources at start up and configure dependency injection.
I'm going to share how I configured my generic host with a bare-bones approach you can adapt. It implements logging, autofac and is configurable with appsettings.json.

Introductory guide for developing oracle tuxedo appplications in .net c#/vb.net
I recently had to work with Oracle Tuxedo during a migration project of a legacy vb6 application to .Net. I found that there was not a lot of information at hand available for developers so I thought I would put together a quick and concise guide with a few of my own tips that I picked up during development.
.jpg)
Complete guide to hosting an ASP.NET Core app on your Linux clearly explained and broken down for beginners
A proxy server is a mediator, which offers web administrators more control and security over client machines connecting to a server. In order to make our Linux hosted .Net Core application visible to the internet, we need to configure a reverse proxy server which as the name implies, is the same concept in reverse and acting on behalf of servers.