C# Base KeywordThis post is about passing parameters to the base class constructor. Suppose our base class (that we are […] June 12, 2019 in C# tagged base / passing / parameter / constructor / inheritance / keyword / C# Inheritance by Mike
Dependency InjectionWhat is Dependency Injection? Dependency Injection (DI) is a software design pattern. It allows us to develop loosely-coupled […] May 22, 2019 in C# tagged interface / constructor / dependency / injection by Mike
C# Method Overriding 2This is part 2 of our previous post called C# Method Overriding. In this example we have added […] December 30, 2018 in C# tagged virtual / method / constructor / params / polymorphism / override / C# Polymorphism by Mike
C# Class Constructor OverloadingWhat is constructor overloading? We can create custom constructors. We will use an example of two custom constructors […] May 15, 2018 in C# tagged overload / class / constructor / overloading / C# Classes Intermediate by Mike
C# Class ConstructorsWhat is a constructor? A constructor is a method called when an instance of a class is created. […] May 15, 2018 in C# tagged class / constructor / default / parameterless / C# Classes Intermediate by Mike