Store Objects into ArrayList : ArrayList « Data Structure « VB.Net

Home
VB.Net
1.2D
2.Application
3.Class
4.Data Structure
5.Data Types
6.Database ADO.net
7.Development
8.Event
9.File Directory
10.Generics
11.GUI
12.Language Basics
13.LINQ
14.Network Remote
15.Security
16.Thread
17.Windows Presentation Foundation
18.Windows System
19.XML
20.XML LINQ
VB.Net Tutorial
VB.Net by API
VB.Net » Data Structure » ArrayListScreenshots 
Store Objects into ArrayList
Store Objects into ArrayList

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 As Integer
       For i = 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 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

           
       
Related examples in the same category
1.ArrayList: add, remove, IndexOf, Count, Contains, TrimToSize, GetEnumeratorArrayList: add, remove, IndexOf, Count, Contains, TrimToSize, GetEnumerator
2.Add element to an ArrayList and get its LengthAdd element to an ArrayList and get its Length
3.Convert ArrayList to Array
4.Store different Class in an ArrayListStore different Class in an ArrayList
5.Use ArrayList to Store your own classUse ArrayList to Store your own class
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.