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
C# Classes Theory 1Before getting into classes, we will look at memory storage first. Data in C# is stored in a […] April 3, 2016 in C# tagged 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 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# Class MembersThere are 9 types of class members. They can be divided into 2 groups: data members (store data) […] December 25, 2018 in C# tagged C# Classes by Mike
C# MethodsA C# method is a term used to describe functions exposed by objects. A method is a function […] May 18, 2018 in C# tagged reference / objects / parse / methods / tryparse / null / ref / exception / offensive / signature / defensive / out / overloading / overload / params / C# Classes by Mike
C# Methods Part 2Methods were discussed in the previous post in this series on C# classes. A method is a function […] December 23, 2018 in C# tagged C# Classes 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# PropertiesProperties and fields provide access to data contained in an object. The various pieces of data contained within […] May 17, 2018 in C# tagged value / set / get / encapsulation / getter / setter / auto-implemented / backing / snippet / properties / C# Classes 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 class / classes / property / properties / C# Classes by Mike
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 class / public / protected / encapsulation / camel / oop / pascal / private / internal / C# Classes by Mike