IEnumerable, IEnumerator (VB) : IEnumerable « Collections « ASP.NET Tutorial

ASP.NET Tutorial
1. ASP.Net Instroduction
2. Language Basics
3. ASP.net Controls
4. HTML Controls
5. Page Lifecycle
6. Response
7. Collections
8. Validation
9. Development
10. File Directory
11. Sessions
12. Cookie
13. Cache
14. Custom Controls
15. Profile
16. Configuration
17. LINQ
18. ADO.net Database
19. Data Binding
20. Ajax
21. Authentication Authorization
22. I18N
23. Mobile
24. WebPart
25. XML
Java
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
ASP.NET Tutorial » Collections » IEnumerable 
7. 6. 3. IEnumerable, IEnumerator (VB)
<%@ Page Language="VB" %>
<script runat="server">
Sub Page_Load()
  Dim _customCollection = New CustomCollection(10)  
  
  DemoOutput.Text = ""
  Dim _customItem As CustomItem
  For Each _customItem In _customCollection
    DemoOutput.Text += _customItem.Index & "<br />"
  Next
End Sub

Public Class CustomCollection
  Implements IEnumerable, IEnumerator

  Private customItems() As CustomItem
  Private currentIndex As Integer = -1

  Public Sub New(ByVal Count As Integer)
    Dim index As Integer

    ReDim customItems(Count - 1)
    For index = To Count - 1
      customItems(index= New CustomItem(index)
    Next
  End Sub

#Region "Implementation of IEnumerable"
  Public Function GetEnumerator() As IEnumerator Implements IEnumerable.GetEnumerator
    Return CType(Me, IEnumerator)
  End Function
#End Region

#Region "Implementation of IEnumerator"
  Public Sub Reset() Implements IEnumerator.Reset
    currentIndex = -1
  End Sub

  Public Function MoveNext() As Boolean Implements IEnumerator.MoveNext
    If currentIndex < customItems.Length - Then
      currentIndex = currentIndex + 1
      Return True
    Else
      Return False
    End If
  End Function

  Public ReadOnly Property Current() As Object Implements IEnumerator.Current
    Get
      Return customItems(currentIndex)
    End Get
  End Property
#End Region
End Class

Public Class CustomItem
  Private _index As Integer

  Public ReadOnly Property Index() As Integer
    Get
      Return _index
    End Get
  End Property

  Public Sub New(ByVal Index As Integer)
    _index = Index
  End Sub
End Class
</script>
<html>
  <head>
    <title>Creating a Custom Collection</title>
  </head>
  <body>
    <form id="MainForm" runat="server">
      Output of Looping through a Custom Collection
      <br />
      <asp:literal id="DemoOutput" runat="server" />
    </form>
  </body>
</html>
7. 6. IEnumerable
7. 6. 1. Using CustomCollection
7. 6. 2. IEnumerable, IEnumerator
7. 6. 3. IEnumerable, IEnumerator (VB)
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.