How to use the 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

Samual Sam
Samual Sam

Learning faster. Every day.

Updated on: 23-Jun-2020

271 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements