C# Array GetValue(Int32, Int32)

Description

Array GetValue(Int32, Int32) gets the value at the specified position in the two-dimensional Array. The indexes are specified as 32-bit integers.

Syntax

Array.GetValue(Int32, Int32) has the following syntax.


public Object GetValue(
  int index1,
  int index2
)

Parameters

Array.GetValue(Int32, Int32) has the following parameters.

  • index1 - A 32-bit integer that represents the first-dimension index of the Array element to get.
  • index2 - A 32-bit integer that represents the second-dimension index of the Array element to get.

Returns

Array.GetValue(Int32, Int32) method returns The value at the specified position in the two-dimensional Array.

Example

The following code example demonstrates how to set and get a specific value in a one-dimensional or multidimensional array.


using System;/*  w ww .j  ava2  s  . co  m*/

public class SamplesArray  {

   public static void Main()  {


      // Creates and initializes a two-dimensional array.
      String[,] myArr2 = new String[5,5];

      // Sets the element at index 1,3.
      myArr2.SetValue( "one-three", 1, 3 );
      Console.WriteLine( "[1,3]:   {0}", myArr2.GetValue( 1, 3 ) );


   }

}

The code above generates the following result.





















Home »
  C# Tutorial »
    System »




Array
BitConverter
Boolean
Byte
Char
Console
ConsoleKeyInfo
Convert
DateTime
DateTimeOffset
Decimal
Double
Enum
Environment
Exception
Guid
Int16
Int32
Int64
Math
OperatingSystem
Random
SByte
Single
String
StringComparer
TimeSpan
TimeZone
TimeZoneInfo
Tuple
Tuple
Tuple
Type
UInt16
UInt32
UInt64
Uri
Version