c# .net Adsense ADO.NET Linq Viruses/security asp.net MVC JQuery Angular-js Node-js SEO Java C++ SQL API Networking vb.net .Net Css JavaScript Generics c#.Net entity framework HTML Website host Website Construction Guide HTTP tutorial W3C tutorial Web Services JSON Psychology Ionic framework Angular ReactJS Python Computer Android
c# .net

How to create Array in C#

| | CSharp

In this example we are creating a new array variable and assigning value 3. then we

assign value for array element for zeroth element

EventNumbers[0] = 0; EventNumbers[1] = 2; EventNumbers[2] = 4;

static void Main()
        {
          int[] EventNumbers = new int[3];
           EventNumbers[0] = 0;
           EventNumbers[1] = 2;
           EventNumbers[2] = 4;
           console.writeLine(EventNumbers[1]);
        }

here we are returning

output:

2