C# Property ExampleHere is an example of a program that uses a class. All that we are doing here is […] April 3, 2016 in C# tagged properties / class / classes / property / C# Classes by Mike
C# Classes Theory 1Before getting into classes, we will look at memory storage first. Data in C# is stored in a […] April 3, 2016 in C# tagged C# Classes by Mike
C# Classes IntroductionThe post C# Introduction lists all of the C# series of posts we have at this site. We […] April 3, 2016 in C# tagged introduction / class / classes / C# Classes by Mike
C# Functions Part 6 DelegatesA delegate is a type that enables you to store references to functions. Delegates are important parts of […] April 3, 2016 in C# tagged delegate / function / C# Functions by Mike
C# Functions Part 5 OverloadingFunction Overloading and Out Parameters You want a function that returns the maximum value from an array of […] April 3, 2016 in C# tagged overloading / C# Functions by Mike
C# Functions Part 4 Out ParameterYou can pass values by reference. Also you can specify that a given parameter is an out parameter […] April 3, 2016 in C# tagged function / parameter / out / C# Functions by Mike
C# Functions Part 3 ParamsA paramter array is a special parameter for a function. You may pass one and only one parameter […] April 3, 2016 in C# tagged param / function / array / variable / parameter / C# Functions by Mike
C# Functions Part 2 ParametersA parameter is part of the function definition, whereas an argument is passed to a function by calling […] April 3, 2016 in C# tagged parameters / C# Functions by Mike
C# Functions IntroductionThe post C# Introduction lists all of the C# series of posts we have at this site. Often […] April 3, 2016 in C# tagged parameters / lamda / function / signature / introduction / C# Functions 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 enumeration / enum / cardinal / cardinality / list / convert / cast / tryparse / 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# 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