BlackWaspTM

This web site uses cookies. By using the site you accept the cookie policy.This message is for compliance with the UK ICO law.

<< Previous | 1 | 2 | 3 | 4 | 5 | Next >>
The Stack CollectionThe Stack Collection
The forty-first part of the C# Fundamentals tutorial examines the Stack class. This collection includes the functionality required in a 'Last In, First Out' (FIFO) stacking structure. Stacks allow items to be held for later extraction and processing.
Bit Manipulation with the BitArrayBit Manipulation with the BitArray
The forty-second part of the C# Fundamentals tutorial examines the use of the BitArray class. This type of collection can be used to hold very large series of bits that can be manipulated either independently or collectively as an entire group.
The Specialised CollectionsThe Specialised Collections
The forty-third part of the C# Fundamentals tutorial describes the specialised (or specialized) collection classes. The .NET framework provides five different types of specialised collection, each being optimised for a particular structure or data type.
C# MethodsC# Methods
The forty-fourth part of the C# Fundamentals tutorial starts to bring together the information in the earlier articles to allow the construction of a fully working program. In this instalment, the creation and calling of custom methods is considered.
C# Functional MethodsC# Functional Methods
The forty-fifth part of the C# Fundamentals tutorial expands upon the creation of methods described in the previous instalment. In this article, the creation of methods that return a value and that can accept parameters is considered.
C# Method ParametersC# Method Parameters
The forty-sixth part of the C# Fundamentals tutorial expands upon the creation of methods described in the previous instalments. In this article, the various types of parameter that can be added to a method definition are described.
C# Variable ScopesC# Variable Scopes
The forty-seventh part of the C# Fundamentals tutorial discusses the concept of variable scopes. The scope of a variable determines its lifetime and controls its visibility and availability to each of the methods within a program.
C# Constants and EnumerationsC# Constants and Enumerations
The forty-eighth part of the C# Fundamentals tutorial examines the use of constants and enumerations. These provide two methods of describing non-changing values using descriptive words rather than 'magic numbers' to improve code readability.
<< Previous | 1 | 2 | 3 | 4 | 5 | Next >>