array

  • Thread starter Thread starter a
  • Start date Start date
A

a

Dear programmer I don't understand the array can any one give very easy
example to understand the types of array ( I can use command button and text
box)

Example

'Don't forget to write notes for me

' the next line will define the array.

Dim a(2) As String

' the next lines define the data of array
a(0) = "1"
a(1) = "2"
a(2) = "3"

And so on

Notes:

The array is very difficult please give me easy example
 
a said:
Dear programmer I don't understand the array can any one give very
easy example to understand the types of array ( I can use command
button and text box)

Example

'Don't forget to write notes for me

' the next line will define the array.

Dim a(2) As String

' the next lines define the data of array
a(0) = "1"
a(1) = "2"
a(2) = "3"

And so on

Notes:

The array is very difficult please give me easy example

http://www.google.com/search?hl=en&q=C#+array+example

enjoy
 
Dear programmer I don't understand the array can any one give very easy
example to understand the types of array ( I can use command button and
text
box)

Example

'Don't forget to write notes for me

' the next line will define the array.

Dim a(2) As String

' the next lines define the data of array
a(0) = "1"
a(1) = "2"
a(2) = "3"

Well, that seems to be an example of using an array right there.

But...

Your example is in Visual Basic. This is a C# newsgroup. If you want
help using arrays in VB, you should post to a newsgroup that is related to
VB.

Pete
 
Hi,

This is a C# NG, your code is in VB, what language are you using?
Also I recommend you to get a Learning programming book (of either C# or
VB).
 
Hi,

I think your question maybe more related to VB.NET language. As others
suggested, you can try posting in VBNET newsgroup also. For ARRAY example,
here are some web articles which maybe helpful to you:

#Exploring VB.NET Array
http://www.vbdotnetheaven.com/Uploadfile/ssivkumar/VbDotNetArray041820050729
31AM/VbDotNetArray.aspx

#Array Types in .NET
http://msdn.microsoft.com/msdnmag/issues/02/02/NET/

http://articles.techrepublic.com.com/5100-10878_11-6134505.html

Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead


This posting is provided "AS IS" with no warranties, and confers no rights.

--------------------
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top