Use getLowerBound Method of Array Class in C#



The GetLowerBound() method of array class in C# gets the lower bound of the specified dimension in the Array.

Firstly, set the array and get the lower bound as shown below −

arr.GetLowerBound(0).ToString()

The following is an example stating the usage of GetLowerBound() method in C#.

Example

 Live Demo

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace lower {
   class Program {
      static void Main(string[] args) {
         Array arr = Array.CreateInstance(typeof(String), 3);
         arr.SetValue("Car", 0);
         arr.SetValue("Truck", 1);
         arr.SetValue("Motorbike", 2);
         Console.WriteLine("Lower Bound {0}",arr.GetLowerBound(0).ToString());
         Console.ReadLine();
      }
   }
}

Output

Lower Bound 0
Updated on: 2020-06-23T12:46:53+05:30

424 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements