Sunday, December 16, 2012

Types of Array

Visual Basic मे Array दो प्रकार के होते हैं।
i. One Dimensional Array
ii. Multi-Dimensional Array
  • One Dimensional Array: ऐसे array जिसमे केवल एक index या subscript होती है उसे one dimensional array कहते हैं। इसमे multiple values को स्टोर किया जा सकता है। इसमे array मे कोई value store करने या access करने के लिए इसकी index का use किया जाता है। जैसे-
Dim marks (10) As Integer
इस declaration मे marks array मे 0 से 9 index तक या 10 values store की जा सकती हैं।
Initializing one dimensional Array: 1D array मे design और run time दोनों मे values को insert किया जा सकता है।
Design time मे value store करने के लिए array index या Carly brackets {} का use किया जाता है।
Syntax:
Dim array_name() As DataType = {element1, element2,….}
Exp-
Dim name () As String = {“Raj”, “Shyam”, “Ashu”}
या
Dim Name (2) As String
Name (0) = “Raj”
Name (1) = “Shyam”
Name(2) = “Ashu”











image
Public Class Form1
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim a(5) As Integer
Dim i As Integer
For i = 0 To 4
a(i) = InputBox("Enter Value")
Label1.Text = Label1.Text & Chr(13) & a(i)
Next
End Sub
End Class










No comments:

Post a Comment

Contact us

Name

Email *

Message *