001 C Arrays Example

You might also like

Download as pdf or txt
Download as pdf or txt
You are on page 1of 1

/*************************************************************************

* C# Arrays Example
*
*************************************************************************/
using System;
namespace MyProject.Examples
{
class ExampleOne
{
static void Main()
{

string[] myArray = new string[4];


myArray[0] = "3";
myArray[1] = "34";
myArray[2] = "37";
myArray[3] = "65";
Console.Write(myArray[4]);

Console.ReadKey();
}
}
}

You might also like