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

Home
VB.Net
1.2D
2.Application
3.Class
4.Data Structure
5.Data Types
6.Database ADO.net
7.Date Time
8.Development
9.Event
10.File Directory
11.Generics
12.GUI
13.Internationalization I18N
14.Language Basics
15.LINQ
16.Network Remote
17.Reflection
18.Security
19.Thread
20.Windows Presentation Foundation
21.Windows System
22.XML
23.XML LINQ
VB.Net Tutorial
VB.Net by API
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_a___va__2___s__.___co_m__ | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.