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 class / constructor / overloading / overload / 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
C# FieldsA field is like a variable that we declare at the class level. We use that to store […] May 15, 2018 in C# tagged fields / composition / C# Classes by Mike
C# Class Object InitializersWith object constructors we can initialize an object and put it into an early state. There is also […] May 15, 2018 in C# tagged object / class / initializer / C# Classes by Mike