C# – Enums

  • Post author:
  • Post category:C#
  • Post comments:0 Comments

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…

Continue ReadingC# – Enums

C# – Strings

  • Post author:
  • Post category:C#
  • Post comments:2 Comments

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…

Continue ReadingC# – Strings

C# – Arrays

  • Post author:
  • Post category:C#
  • Post comments:1 Comment

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…

Continue ReadingC# – Arrays

C# – Nullables

  • Post author:
  • Post category:C#
  • Post comments:2 Comments

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…

Continue ReadingC# – Nullables