Funzione Array.get<'T> (F#)
Ottiene un elemento da una matrice.
Percorso di spazio dei nomi/modulo: Microsoft.FSharp.Collections.Array
Assembly: FSharp.Core (in FSharp.Core.dll)
// Signature:
Array.get : 'T [] -> int -> 'T
// Usage:
Array.get array index
Parametri
Valore restituito
Valore della matrice all'indice specificato.
Note
Questa funzione è denominata Get negli assembly compilati. Utilizzare questo nome se si accede alla funzione da un linguaggio diverso da F# o tramite reflection.
Esempio
Nel codice seguente vengono illustrate la creazione, l'impostazione e l'ottenimento di valori della matrice.
let array1 = Array.create 10 ""
for i in 0 .. array1.Length - 1 do
Array.set array1 i (i.ToString())
for i in 0 .. array1.Length - 1 do
printf "%s " (Array.get array1 i)
Piattaforme
Windows 7, Windows Vista SP2, Windows XP SP3, Windows XP x64 SP2, Windows Server 2008 R2, Windows Server 2008 SP2, Windows Server 2003 SP2.
Informazioni sulla versione
F# Runtime
Supportato in: 2.0, 4
Silverlight
Supportato in: 3