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 format / strings / string / interpolation / composite / formatting / $ / dollar 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 disposable / form / asp / C# Interfaces by Mike
C# StringsIn C# a string is a series of Unicode characters. We surround strings with double quotes, whereas we […] June 6, 2018 in C# tagged concatenation / join / escape / parse / charaacters / tostring / strings / convert / string by Mike
C# NamespaceWhat is a namespace? Namespaces are the .NET way of providing containers for application code, such that the […] June 4, 2018 in C# tagged namespace / using by Mike
C# foreach LoopThe foreach loop in C# executes a statement or a block of statements for each element in an […] June 3, 2018 in C# tagged foreach / for / loop / each by Mike
C# Ternary OperatorThe ternary operator is an example of C# flow control. The ternary operator works on three operands. It […] June 3, 2018 in C# tagged control / if / ternary / operator / flow / else / C# Flow Control by Mike
C# Flow Control IntroductionThe post C# Introduction lists all of the C# series of posts we have at this site. Program […] June 3, 2018 in C# tagged loop / control / branch / flow / C# Flow Control by Mike
C# Lists of Class ObjectsIn a previous post we defined a C# Lists Introduction. In this post we want to define a […] May 27, 2018 in C# tagged objects / foreach / var / lists / list / C# Lists by Mike
C# Anonymous TypesOften you need to create simple boring classes for data representation, especially in database applications. You end up […] May 26, 2018 in C# tagged type / anonymous by Mike
C# ExpressionsExpressions combine operators with variables and literal values. What does this mean? Variables store data, and are analogous […] May 21, 2018 in C# tagged expression / expressions / operator / literal / C# Primitives and Expressions by Mike