C# Constructors and InheritanceThe post C# Introduction lists all of the C# series of posts we have at this site. There […] August 4, 2018 in C# tagged inheritance / constructors / C# Inheritance by Mike
C# Protected Access ModifierIn the previous post we discussed the public and private access modifier. In this post we will follow […] August 4, 2018 in C# tagged protected / modifier / access / C# Access Modifiers by Mike
C# CompositionThere are two kinds of relationships between classes: Inheritance (is-a) Composition (has-a) This post is based on an […] August 3, 2018 in C# tagged class / inheritance / composition / oop / C# Inheritance by Mike
C# Lists of Class Objects 2We are going to move our example along to the next stage after the previous post. Here we […] July 29, 2018 in C# tagged list / model / asp / binding / static / IEnumerable / C# Lists by Mike
C# Global ConstantsWhat do we mean by global constants? If you are writing a C# program and you need to […] July 17, 2018 in C# tagged constant / variable by Mike
C# Lambda Part 2In this second post on Lambda, we are going to use a more practical example of using Lambda […] July 3, 2018 in C# tagged lambda / C# Lambda by Mike
C# Delegates Part 3This post is a continuation from the previous post. You need to have a look at the previous […] July 2, 2018 in C# tagged delegate / extensible / flexible / += / multicast / framework / C# Delegates by Mike
C# Delegates Part 2In C#, what is a delegate? A delegate is an object that knows how to call a method […] July 2, 2018 in C# tagged framework / delegate / extensible / flexible / C# Delegates by Mike
C# Lambda IntroductionA Lambda expression is nothing more than an anonymous method. It has no access modifier (public/private), it has […] July 2, 2018 in C# tagged lambda / C# Lambda by Mike
C# Overriding ToString MethodMicrosoft has an article on overriding the ToString() method in the web page called Formatting Types in .NET. […] June 23, 2018 in C# tagged C# / convert / tostring / override / overriding by Mike
C# String InterpolationThe general definition of interpolation can be either (1) the insertion of something of a different nature into […] June 23, 2018 in C# tagged composite / formatting / $ / dollar / format / strings / string / interpolation by Mike
C# Disposable ObjectsWhat are disposable objects? The book C# 5.0 In A Nutshell, The Difinitive Reference published by O’REILLY written […] June 10, 2018 in C# tagged form / asp / disposable / C# Interfaces by Mike