C# Access ModifiersWhat are access modifiers? Access modifiers are used to control access to a class and/or its members. We […] May 17, 2018 in C# tagged public / protected / encapsulation / camel / oop / pascal / private / internal / class / C# Classes 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 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# 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
C# Classes Theory 2Before we can understand classes, we need to have a good knowledge of the basic building blocks. Encapsulation […] May 5, 2018 in C# tagged class / classes / theory / oop / pillars / C# Classes by Mike
C# Class Library Projects Part 2In this post we provide the C# source code for a very simple example of a class library, […] July 2, 2016 in C# tagged C# / class / library / project / C# Class Library by Mike
C# Class Library Projects IntroductionA project that contains only classes (and other type definitions if necessary) but no entry point is called […] July 2, 2016 in C# tagged library / project / C# / class / C# Class Library by Mike
C# Property ExampleHere is an example of a program that uses a class. All that we are doing here is […] April 3, 2016 in C# tagged property / properties / class / classes / C# Classes by Mike
C# Classes IntroductionThe post C# Introduction lists all of the C# series of posts we have at this site. We […] April 3, 2016 in C# tagged introduction / class / classes / C# Classes by Mike