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
Post your comments / questions
Recent Article
- How to use if else statement in c++?
- How to use godaddy domain name with another godaddy hosting account?
- Restore of database 'DATABASE' failed. (Microsoft.SqlServer.Management.RelationalEngineTasks)
- How to programmatically modifying the AppSetting value in web.config using c#?
- TypeError [ERR_INVALID_CALLBACK]: Callback must be a function. Received undefined
- How to calculate the age from jQuery ui datepicker using c#?
- How to calculate days difference between two dates in c#?
- Changing date format in jQuery ui datepicker
Related Article