
- C# Basic Tutorial
- C# - Home
- C# - Overview
- C# - Environment
- C# - Program Structure
- C# - Basic Syntax
- C# - Data Types
- C# - Type Conversion
- C# - Variables
- C# - Constants
- C# - Operators
- C# - Decision Making
- C# - Loops
- C# - Encapsulation
- C# - Methods
- C# - Nullables
- C# - Arrays
- C# - Strings
- C# - Structure
- C# - Enums
- C# - Classes
- C# - Inheritance
- C# - Polymorphism
- C# - Operator Overloading
- C# - Interfaces
- C# - Namespaces
- C# - Preprocessor Directives
- C# - Regular Expressions
- C# - Exception Handling
- C# - File I/O
- C# Advanced Tutorial
- C# - Attributes
- C# - Reflection
- C# - Properties
- C# - Indexers
- C# - Delegates
- C# - Events
- C# - Collections
- C# - Generics
- C# - Anonymous Methods
- C# - Unsafe Codes
- C# - Multithreading
- C# Useful Resources
- C# - Questions and Answers
- C# - Quick Guide
- C# - Useful Resources
- C# - Discussion
What are good examples of array in C#?
An array is used to store a collection of data. It consists of contiguous memory locations.
Some of the examples of the array include −
Find common elements in three sorted arrays
using System; class Demo { static void commonElements(int []one, int []two, int []three) { int i = 0, j = 0, k = 0; while (i < one.Length && j < two.Length && k < three.Length) { if (one[i] == two[j] && two[j] == three[k]) { Console.Write(one[i] + " "); i++;j++;k++; } else if (one[i] < two[j]) i++; else if (two[j] < three[k]) j++; else k++; } } public static void Main() { int []one = {20, 35, 57, 70}; int []two = {9, 35, 57, 70, 92}; int []three = {25, 35, 55, 57, 67, 70}; Console.Write("Common elements: "); commonElements(one, two, three); } }
Create Arrays Dynamically in C#
using System; using System.Collections; namespace CollectionApplication { class Program { static void Main(string[] args) { ArrayList al = new ArrayList(); al.Add(99); al.Add(47); al.Add(64); Console.WriteLine("Count: {0}", al.Count); Console.Write("List: "); foreach (int i in al) { Console.Write(i + " "); } Console.WriteLine(); Console.ReadKey(); } } }
Work with Jagged Arrays and access an element in C#
using System; namespace ArrayApplication { class MyArray { static void Main(string[] args) { int[][] points = new int[][]{new int[]{10,5},new int[]{30,40}, new int[]{70,80},new int[]{ 60, 70 }}; int i, j; for (i = 0; i < 3; i++) { for (j = 0; j < 2; j++) { Console.WriteLine("a[{0}][{1}] = {2}", i, j, points[i][j]); } } // access int x = points[0][1]; Console.WriteLine(x); Console.ReadKey(); } } }
- Related Articles
- What are some good Python examples for beginners?
- What are the good resources to Learn C++?
- Array data() in C++ STL with Examples
- Check If It Is a Good Array in C++
- What are the properties of array class in C#?
- What are the limitations of array in C language?
- Array.BinarySearch(Array, Object) Method with examples in C#
- What Are Good Lab Practices (GLP)?
- Give two examples each: The metals that are good conductors and poor conductors of heat, respectively.
- What are the examples of clustering in data mining?
- What are the properties of a good Heating Element?
- C++ program to find perfect array of size n whose subarray is a good array
- What are the examples of Unsupervised Learning?
- \( 75 \% \) of 32 students are good in football. How many students are not good in football?
- What are Good and Bad Interface Designs?

Advertisements