GetLowerBound()
在C#数组类的方法得到的下界在数组中指定的尺寸。
首先,设置数组并获得下界,如下所示:
arr.GetLowerBound(0).ToString()
以下是说明GetLowerBound()
C#中方法用法的示例。
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(); } } }
输出结果
Lower Bound 0