

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
How to define a single-dimensional array in C Sharp?
An array is used to store a collection of data, but it is often more useful to think of an array as a collection of variables of the same type stored at contiguous memory locations.
To define a single-dimensional array −
int[] runs = new int[10];
Let us now initialize the array in the same line −
int[] runs = new int[5] {125, 173, 190, 264, 188};
The following is an example displaying how to declare, initialize and display an array −
Example
using System; namespace Program { class Demo { static void Main(string[] args) { int[] runs = new int[5] {125, 173, 190, 264, 188}; int i,j; for (j = 0; j < 5; j++ ) { Console.WriteLine("Innings score of Cricketer[{0}] = {1}", j, runs[j]); } Console.ReadKey(); } } }
Output
Innings score of Cricketer[0] = 125 Innings score of Cricketer[1] = 173 Innings score of Cricketer[2] = 190 Innings score of Cricketer[3] = 264 Innings score of Cricketer[4] = 188
- Related Questions & Answers
- How to define multi-dimensional arrays in C#?
- Single dimensional array in Java
- How to define multi-dimensional arrays in C/C++?
- How to Map multi-dimensional arrays to a single array in java?
- Single dimensional array vs multidimensional array in JavaScript.
- How to define a rectangular array in C#?
- How to declare a two-dimensional array in C#
- How to define an array in C#?
- Dimensional Array in C#?
- How to define an array class in C#?
- Passing two dimensional array to a C++ function
- 4 Dimensional Array in C/C++
- Selenium with C Sharp - How to perform Explicit Wait method?
- How do I sort a two-dimensional array in C#
- Size of a Three-dimensional array in C#
Advertisements