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
C# Visual StudioWhen we write C# code, we use an integrated development environment (IDE). The first thing you want to […] May 21, 2018 in C# tagged tricks / visual studio / IDE / shortcut / hints / tips / tip / gem / gems / C# Getting Started by Mike
C# OperatorsWhat is an operator in C#? An operator is a program element that is applied to one or […] May 21, 2018 in C# tagged statement / precedence / type / expression / operator / C# Primitives and Expressions by Mike
C# Type ConversionWhat is type conversion? Mosh Hamedani has a short instructional video up at Udemy.com. It’s the tenth video […] May 21, 2018 in C# tagged type / types / conversion / convert / C# Primitives and Expressions by Mike
C# Class AssociationThe post C# Introduction lists all of the C# series of posts we have at this site. Classes […] May 20, 2018 in C# tagged class / inheritance / classes / association / coupling / composition / C# Class Association by Mike