Add element to an ArrayList and get its Length : 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 
Add element to an ArrayList and get its Length
Add element to an ArrayList and get its Length

Imports System
Imports System.Collections


Public Class MainClass

   Shared Sub Main()
    Dim myList As New ArrayList()
    myList.Add("aa")
    Console.WriteLine("You entered " & myList.Count() " ITEMS.")
   End Sub 

End Class


           
       
Related examples in the same category
1.Store Objects into ArrayListStore Objects into ArrayList
2.ArrayList: add, remove, IndexOf, Count, Contains, TrimToSize, GetEnumeratorArrayList: add, remove, IndexOf, Count, Contains, TrimToSize, GetEnumerator
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.