Array
C# CodeHelper
011
From:
011netservice@gmail.com
Date:
2022-04-22
存放(宣告時指定型別及元素數量)陣列.
內建於語言的基本元素. 雖然並非為Collections. 但是因為繼承自ILis介面, 因此仍有Collection的特性.
建立陣列時, 需指定固定的元素個數.
預設以0為lower bound. 建立Array時可指定不同的lower bound.
可建立為多階陣列, 最多32階.
同時實作了以下介面, 因此可以使用最多變化的屬性或方法:
System.Collections.Generic.IList
System.Collections.Generic.ICollection<T>
System.Collections.Generic.IEnumerable<T>
Example:
Array
Reference:
System.Array
Log:
Date
Author
Description
2017-01-30
Honda
copy from luckstat document.
011