C#
Frequently asked questions When learning to code
Is the Tech Industry Really Oversaturated for Junior Developers? Rambles, Reflections and Truth Read
Will Learning Code make you rich? Salary expectations and more Read
Can You Learn to Code Without a College Degree? Read
How Long Does It Take To Learn How To Code? Read
Is learning to code hard? Yes it is (sometimes) Read
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.
Logging in .NET CORE 3, a useful guide and walkthrough for C# beginners and experts alike
This beginner-oritented article explores the built-in logging framework introduced in ASP.NET Core. Microsoft have seriously improved its built-in logging functionality and there are plenty of new features to get your teeth into.
What the heck is OWIN for .NET? An indepth look at OWIN for beginners with code examples.
OWIN is a .NET standard for writing web middleware. I had no idea what it was either until I researched and wrote this article for those beginners who find themselves in a similar situation of bafflement.
The protected keyword in CSharp, what is it used for?
The protected keyword is an access modifier applied to the declaration of a class and any of its members that restricts the scope of accessibility to either within the class (or struct) where it is declared or from classes derived (inherited) from it.
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.
How to Install Font Awesome, Quick and Easy!
The quickest way to get up and running quickly with Font awesome.