How to create an array in c#.NET

ARRAYS IN C#

C# Tutorials

  

ARRAYS IN C SHARP

Learn Tutorials
How to create an array in c#.NET

Example code for Arrays in c sharp:
public string[] KeysList=new string[19];

or

public string[] KeysList={"triangle","circle","square"}
This is example code for how to create an array in c#.net