C# Complex Types Introduction
This post is an introduction to complex types, as opposed to simple (primitive) types. The post C# Introduction […]
This post is an introduction to complex types, as opposed to simple (primitive) types. The post C# Introduction […]
There are two types of arrays, single dimension arrays and multidimension arrays. Arrays are similar to variables, but […]
An enum is a data type that only allows certain values for that piece of data. The stuff […]
Here are some examples of use cases for enumerations. Suppose you have a series of integer values that […]
What is a struct? Structs are programmer-defined data types. They are similar to classes. They have data members […]
First, let’s review what a struct is. The struct (short for structure) is just that. That is, structs […]
There is a type called DateTime that is defined in the System namespace that represents an exact moment […]
TimeSpan represents a length of time, rather than an exact moment in time. The most simple way to […]