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 internal / class / public / protected / encapsulation / camel / oop / pascal / private / 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 constructor / default / parameterless / class / 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
C# DirectoriesWorking with files and directories is perhaps one of the easier things to do in C#. Because files […] May 13, 2018 in C# tagged directory / directories / folder / folders / C# Files Directories by Mike
C# FilesWorking with files and directories is perhaps one of the easier things to do in C#. Because files […] May 13, 2018 in C# tagged file / files / C# Files Directories by Mike
C# Type InferenceIn C# 3, the keyword var was introduced. What does var do? What is type inference? Let’s take […] May 12, 2018 in C# tagged type / var / inference / anonymous 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
Git Part 3 gitignoreThis post is about protecting your privacy in Github. These files or folders might contain sensitive information like […] April 29, 2018 in Programming tagged git / gitignore / ignore / Git and GitHub by Mike
Git Part 2 Add Commit Branch Delete RevertThis is part two of our Git series of posts. The previous post was called Git Introduction. The […] April 28, 2018 in Programming tagged branch / revert / log / delete / add / git / commit / Git and GitHub by Mike
Unicode and Character SetsThis post is based on an article by Wikipedia and Joel Spolsky. Joel Spolsky is the co-founder of […] January 3, 2018 in Character Sets tagged ascii / code / unicode / character set by Mike