How to access array elements in C#?

WBOY
Release: 2023-08-22 11:33:12
forward
1342 people have browsed it

How to access array elements in C#?

First, define and initalize an array −

int[] p = new int[3] {99, 92, 95};
Copy after login

Now, display the array elements −

for (j = 0; j < 3; j++ ) {
   Console.WriteLine("Price of Product[{0}] = {1}", j, p[j]);
}
Copy after login

To access any element, just include like this Index of desired element −

p[2];
Copy after login

The above is how to access the third element.

Now let’s see the complete code −

Example

using System;

namespace Program {
   class Demo {
      static void Main(string[] args) {
         int[] p = new int[3] {99, 92, 95};
         int j;

         for (j = 0; j < 3; j++ ) {
            Console.WriteLine("Price of Product[{0}] = {1}", j, p[j]);
         }

         // access
         int e = p[2];
         Console.WriteLine("Product 3rd price: "+e);

         Console.ReadKey();
      }
   }
}
Copy after login

The above is the detailed content of How to access array elements in C#?. For more information, please follow other related articles on the PHP Chinese website!

source:tutorialspoint.com
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template