logo

C#-matriser

Liksom andra programmeringsspråk är array i C# en grupp av liknande typer av element som har en sammanhängande minnesplats. I C# är array en objekt av bastyp System.Array . I C# börjar arrayindex från 0. Vi kan endast lagra en fast uppsättning element i C#-arrayen.

C#-array

Fördelar med C# Array

  • Kodoptimering (mindre kod)
  • Slumpmässig tillgång
  • Lätt att passera data
  • Lätt att manipulera data
  • Lätt att sortera data etc.

Nackdelar med C# Array

  • Fixad storlek

C#-arraytyper

Det finns 3 typer av arrayer i C#-programmering:

  1. Endimensionell array
  2. Flerdimensionell array
  3. Jagged Array

C# Single Dimensional Array

För att skapa endimensionell array måste du använda hakparenteser [] efter typen.

 int[] arr = new int[5];//creating array 

Du kan inte placera hakparenteser efter identifieraren.

stlc
 int arr[] = new int[5];//compile time error 

Låt oss se ett enkelt exempel på C#-array, där vi ska deklarera, initiera och korsa array.

 using System; public class ArrayExample { public static void Main(string[] args) { int[] arr = new int[5];//creating array arr[0] = 10;//initializing array arr[2] = 20; arr[4] = 30; //traversing array for (int i = 0; i <arr.length; i++) { console.writeline(arr[i]); } < pre> <p>Output:</p> <pre> 10 0 20 0 30 </pre> <h3>C# Array Example: Declaration and Initialization at same time</h3> <p>There are 3 ways to initialize array at the time of declaration.</p> <pre> int[] arr = new int[5]{ 10, 20, 30, 40, 50 }; </pre> <p>We can omit the size of array.</p> <pre> int[] arr = new int[]{ 10, 20, 30, 40, 50 }; </pre> <p>We can omit the new operator also.</p> <pre> int[] arr = { 10, 20, 30, 40, 50 }; </pre> <p>Let&apos;s see the example of array where we are declaring and initializing array at the same time.</p> <pre> using System; public class ArrayExample { public static void Main(string[] args) { int[] arr = { 10, 20, 30, 40, 50 };//Declaration and Initialization of array //traversing array for (int i = 0; i <arr.length; i++) { console.writeline(arr[i]); } < pre> <p>Output:</p> <pre> 10 20 30 40 50 </pre> <h3>C# Array Example: Traversal using foreach loop</h3> <p>We can also traverse the array elements using foreach loop. It returns array element one by one.</p> <pre> using System; public class ArrayExample { public static void Main(string[] args) { int[] arr = { 10, 20, 30, 40, 50 };//creating and initializing array //traversing array foreach (int i in arr) { Console.WriteLine(i); } } } </pre> <p>Output:</p> <pre> 10 20 30 40 50 </pre></arr.length;></pre></arr.length;>

C# Array Exempel: Deklaration och initiering samtidigt

Det finns tre sätt att initiera array vid tidpunkten för deklarationen.

 int[] arr = new int[5]{ 10, 20, 30, 40, 50 }; 

Vi kan utelämna storleken på arrayen.

 int[] arr = new int[]{ 10, 20, 30, 40, 50 }; 

Vi kan också utelämna den nya operatören.

 int[] arr = { 10, 20, 30, 40, 50 }; 

Låt oss se exemplet med array där vi deklarerar och initierar array samtidigt.

 using System; public class ArrayExample { public static void Main(string[] args) { int[] arr = { 10, 20, 30, 40, 50 };//Declaration and Initialization of array //traversing array for (int i = 0; i <arr.length; i++) { console.writeline(arr[i]); } < pre> <p>Output:</p> <pre> 10 20 30 40 50 </pre> <h3>C# Array Example: Traversal using foreach loop</h3> <p>We can also traverse the array elements using foreach loop. It returns array element one by one.</p> <pre> using System; public class ArrayExample { public static void Main(string[] args) { int[] arr = { 10, 20, 30, 40, 50 };//creating and initializing array //traversing array foreach (int i in arr) { Console.WriteLine(i); } } } </pre> <p>Output:</p> <pre> 10 20 30 40 50 </pre></arr.length;>

C# Array Exempel: Traversering med hjälp av foreach loop

Vi kan också korsa arrayelementen med hjälp av foreach loop. Den returnerar arrayelement ett efter ett.

 using System; public class ArrayExample { public static void Main(string[] args) { int[] arr = { 10, 20, 30, 40, 50 };//creating and initializing array //traversing array foreach (int i in arr) { Console.WriteLine(i); } } } 

Produktion:

 10 20 30 40 50