Arrays in C#.Net


  • An Array is an user defined data type used to store more than one values with the same name
  • Each value /location is identified using index
  • Always 1st index of Array starts with zero (0) and is known as Lower Bound of Array
  • Always last index of Array ends with size-1 of Array and is known as Upper Bound of Array
  • In C#.NET Arrays are Reference Types

No comments:

Post a Comment