C# FilestreamReading and writing files is an essential part of many programs. There is also creating and deleting files, […] April 4, 2016 in C# tagged filestream / file / files / read / write / stream / C# Files Directories by Mike
C# LINQ IntroductionThe following example uses LINQ (Language INtegrated Query) to create a query to find some data in a […] April 4, 2016 in C# tagged C# LINQ by Mike
C# Polymorphism IntroductionThe post C# Introduction lists all of the C# series of posts we have at this site. Polymorphism […] April 4, 2016 in C# tagged introduction / polymorphism / inheritance / pillar / third / C# Polymorphism by Mike
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 class / classes / property / properties / 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 function / array / variable / parameter / param / 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