Category: c#
-
SOLID: Acronyms to Code By (Part One)
When I first started coding I joked that I would never understand it because there was so much algebra type code. Then I was introduced to all of the acronyms engineers used to construct their projects and it got even more confusing. So let me break it down for you: Single Responsibility Principle This one […]
-
Variables in C# : Var vs Type
When I first started coding I was taught JavaScript. When it came to setting up variables in JavaScript you had three options: var, const or let. And really nowadays that comes down to let (if the variable value will change) or const (if the developer doesn’t want the variable to be changed). But it seems […]