Array
C# CodeHelper 011
From: 011netservice@gmail.com
Date: 2022-04-22
存放(宣告時指定型別及元素數量)陣列.
  1. 內建於語言的基本元素. 雖然並非為Collections. 但是因為繼承自ILis介面, 因此仍有Collection的特性.
  2. 建立陣列時, 需指定固定的元素個數.
  3. 預設以0為lower bound. 建立Array時可指定不同的lower bound.
  4. 可建立為多階陣列, 最多32階.
  5. 同時實作了以下介面, 因此可以使用最多變化的屬性或方法:
Example: Array

Reference:
System.Array

Log:
Date Author Description
2017-01-30 Honda copy from luckstat document.
011