Two Dimension Array: Pass into a Function : Function Parameter « Language Basics « VB.Net

VB.Net
1. 2D
2. Application
3. Class
4. Data Structure
5. Database ADO.net
6. Development
7. Event
8. File Directory
9. Generics
10. GUI
11. Language Basics
12. Network Remote
13. Thread
14. Windows System
15. XML
Microsoft Office Word 2007 Tutorial
Java
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
C# / C Sharp
C# / CSharp Tutorial
ASP.Net
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
PHP
Python
SQL Server / T-SQL
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net Tutorial
VB.Net » Language Basics » Function ParameterScreenshots 
Two Dimension Array: Pass into a Function
Two Dimension Array: Pass into a Function

Imports System

Public Class MainClass

    Shared Sub Main(ByVal args As String())
        ' define an array to hold friends in...
        Dim friends(22As String

        ' set the data...
        friends(0, PersonDataIndex.Name"Name 1"
        friends(0, PersonDataIndex.Email"Email 1"
        friends(0, PersonDataIndex.Sex"Sex 1"

        friends(1, PersonDataIndex.Name"Name 2"
        friends(1, PersonDataIndex.Email"Email 2"
        friends(1, PersonDataIndex.Sex"Ses 2"

        friends(2, PersonDataIndex.Name"Name 3"
        friends(2, PersonDataIndex.Email"Email 3"
        friends(2, PersonDataIndex.Sex"Sex 3"

        AddFriendsToList(friends)
    End Sub
    
    Shared Sub AddFriendsToList(ByVal friends(,As String)
        Dim row As Integer
        For row = To UBound(friends, 1)
            Dim buf As String = ""

            Dim column As Integer
            For column = To UBound(friends, 2)
                buf &= friends(row, column", "
            Next
            
            Console.WriteLine(buf)

        Next


    End Sub

End Class
 
    Public Enum PersonDataIndex As Integer
        Name = 0
        Email = 1
        Sex = 2
    End Enum

           
       
Related examples in the same category
1. Use Array as Function ParameterUse Array as Function Parameter
2. Calculates the power of a value, defaults to squareCalculates the power of a value, defaults to square
3. Pass Array as ParametersPass Array as Parameters
w_w___w__.__j_ava___2s.___c_om | Contact Us
Copyright 2003 - 08 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.