About 173,000 results
Open links in new tab
  1. C# Jagged Arrays - GeeksforGeeks

    Jan 15, 2025 · Unlike multi-dimensional arrays, where the size of all dimensions is fixed, a jagged array allows for variable lengths of inner arrays. Syntax data_type[ ][ ] name_of_array = new …

  2. C# Jagged Array (With Examples) - Programiz

    A jagged array consists of multiple arrays as its element. In this tutorial, we will learn about the C# jagged array with the help of examples.

  3. c# - What is a jagged array? - Stack Overflow

    May 27, 2013 · A jagged array is an array whose elements are arrays. The elements of a jagged array can be of different dimensions and sizes. A jagged array is sometimes called an "array …

  4. C Sharp Jagged Arrays - W3schools

    In the below example, we are initializing and filling elements in a jagged array. Example: a[0] = new int[5] { 1, 2, 3, 4, 5 }; a[1] = new int[10] { 1, 2, 3, 4, 5 , 6, 7, 8, 9, 10 }; It is optional to …

  5. C# Jagged Arrays: An Array of Array - TutorialsTeacher.com

    Jagged arrays store arrays instead of literal values. A jagged array is initialized with two square brackets [] []. The first bracket specifies the size of an array, and the second bracket specifies …

  6. C# Jagged Array (With Step-By-Step Video Tutorial) - Codebuns

    Master C# jagged array (array of arrays) FAST with this Step-By-Step explanation. This article contains code examples, and images to reduce your learning curve.

  7. C# Jagged Arrays - Online Tutorials Library

    scores is a jagged array containing two arrays of integers. scores[0] is an array of 3 integers: { 92, 93, 94 }. scores[1] is an array of 4 integers: { 85, 66, 87, 88 }. Example of a C# Jagged Array. …

  8. Understanding Jagged Arrays in C# with Examples - C# Corner

    The article will explain the Jagged Arrays in C# with an example and easy explanation. Jagged arrays in C# enable the storage of data in varying lengths, offering flexibility in managing …

  9. Jagged Array in C# - Tpoint Tech - Java

    Mar 27, 2025 · Let us take a simple example of a jagged array in C#, which declares, initializes, and traverses jagged arrays.

  10. Understanding Jagged Arrays in C# - DEV Community

    Dec 9, 2024 · Jagged arrays are an efficient way to represent collections of collections in C#. In this article, we’ll build a console-based Noughts and Crosses game (Tic-Tac-Toe in some …

  11. Some results have been removed
Refresh