C# – Enums
An enumeration is a set of named integer constants. An enumerated type is declared using the C# Enums keyword. C# enumerations are value data type. In other words, enumeration contains its own…
An enumeration is a set of named integer constants. An enumerated type is declared using the C# Enums keyword. C# enumerations are value data type. In other words, enumeration contains its own…
In C# Structures is a value type data type. It helps you to make a single variable hold related data of various data types. The struct keyword is used for creating a…
In C# Strings, you can use strings as an array of characters, However, a more common practice is to use the string keyword to declare a string variable. The string keyword is…
The C# Array Class is the base class for all the arrays in C#. It is defined in the System namespace. The Array class provides various properties. Methods To Work…
In this chapter, we will discuss in C# - Param Arrays. At times, while declaring a method, you are not sure of the number of arguments passed as a parameter.…
In this chapter, we will discuss in C# Passing Arrays as Function Arguments. You can pass an array as a function argument in C#. The following example demonstrates this −…
A C# Jagged Arrays is an array of arrays. You can declare a jagged array named scores of type int as − int [][] scores; Declaring an array does not create an array in…
C# Multidimensional Arrays allow multidimensional arrays. Multi-dimensional arrays are also called rectangular arrays. You can declare a 2-dimensional array of strings as − string [,] names; or, a 3-dimensional array…
C# Arrays stores a fixed-size sequential collection of elements of the same type. Instead of declaring individual variables, such as number0, number1, ..., and number99, you declare one array variable…
C# Nullables provides special data types, the nullable types, to which you can assign a normal range of values as well as null values. For example, you can store any value from…