C# Complex Types IntroductionThis post is an introduction to complex types, as opposed to simple (primitive) types. The post C# Introduction […] May 20, 2018 in C# tagged introduction / complex / types / C# Complex Types by Mike
C# ArraysThere are two types of arrays, single dimension arrays and multidimension arrays. Arrays are similar to variables, but […] April 3, 2016 in C# tagged syntax / array / arrays / initialization / C# Complex Types by Mike
C# EnumerationsAn enum is a data type that only allows certain values for that piece of data. The stuff […] April 3, 2016 in C# tagged C# Complex Types by Mike
C# Enumerations Part 2Here are some examples of use cases for enumerations. Suppose you have a series of integer values that […] April 3, 2016 in C# tagged cardinality / list / convert / cast / tryparse / enumeration / enum / cardinal / C# Complex Types by Mike
C# Structs IntroductionWhat is a struct? Structs are programmer-defined data types. They are similar to classes. They have data members […] May 20, 2018 in C# tagged structure / struct / C# Complex Types by Mike
C# Structs with FunctionsFirst, let’s review what a struct is. The struct (short for structure) is just that. That is, structs […] April 3, 2016 in C# tagged struct / C# Complex Types by Mike
C# Date and TimeThere is a type called DateTime that is defined in the System namespace that represents an exact moment […] January 1, 2019 in C# tagged C# / date / time / datetime / sqlite / OA / format / C# Complex Types by Mike
C# TimeSpanTimeSpan represents a length of time, rather than an exact moment in time. The most simple way to […] January 1, 2019 in C# tagged time / datetime / span / timespan / duration / properties / date / C# Complex Types by Mike