本文整理汇总了VB.NET中System.Collections.ArrayList.Capacity属性的典型用法代码示例。如果您正苦于以下问题:VB.NET ArrayList.Capacity属性的具体用法?VB.NET ArrayList.Capacity怎么用?VB.NET ArrayList.Capacity使用的例子?那么恭喜您, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在类System.Collections.ArrayList 的用法示例。
在下文中一共展示了ArrayList.Capacity属性的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的VB.NET代码示例。
示例1: MainClass
' 导入命名空间
Imports System
Imports System.Collections
Public Class MainClass
Shared Sub Main()
Dim empArray As New ArrayList( )
Dim intArray As New ArrayList( )
'populate the arraylists
Dim i As Integer
For i = 0 To 4
empArray.Add(New Employee(i + 100))
intArray.Add((i * 5))
Next i
'print each member of the array
For Each i In intArray
Console.Write("{0} ", i.ToString( ))
Next i
Console.WriteLine(ControlChars.Lf)
'print each employee
Dim e As Employee
For Each e In empArray
Console.Write("{0} ", e.ToString( ))
Next e
Console.WriteLine(ControlChars.Lf)
Console.WriteLine("empArray.Capacity: {0}", empArray.Capacity)
End Sub
End Class
Public Class Employee
Private myEmpID As Integer
Public Sub New(ByVal empID As Integer)
Me.myEmpID = empID
End Sub 'New
Public Overrides Function ToString( ) As String
Return myEmpID.ToString( )
End Function 'ToString
Public Property EmpID( ) As Integer
Get
Return myEmpID
End Get
Set(ByVal Value As Integer)
myEmpID = Value
End Set
End Property
End Class 'Employee
开发者ID:VB程序员,项目名称:System.Collections,代码行数:56,代码来源:ArrayList.Capacity
注:本文中的System.Collections.ArrayList.Capacity属性示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论