UIntPtr.Add(UIntPtr, Int32) Metodo

Definizione

Aggiunge un offset a un intero senza segno.

public:
 static UIntPtr Add(UIntPtr pointer, int offset);
public static UIntPtr Add (UIntPtr pointer, int offset);
static member Add : unativeint * int -> unativeint
Public Shared Function Add (pointer As UIntPtr, offset As Integer) As UIntPtr

Parametri

pointer
UIntPtr

unativeint

Intero senza segno a cui aggiungere l'offset.

offset
Int32

Offset da aggiungere.

Restituisce

UIntPtr

unativeint

Nuovo intero senza segno che riflette l'aggiunta di offset a pointer.

Esempio

Nell'esempio seguente viene creata un'istanza di un UIntPtr oggetto che punta all'inizio di una matrice di dieci elementi e quindi chiama il Add metodo per eseguire l'iterazione degli elementi nella matrice.

using System;

public class Example
{
   public static void Main()
   {
      int[] arr = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 };
      UIntPtr ptr = (UIntPtr) arr[0];
      for (int ctr = 0; ctr < arr.Length; ctr++)
      {
         UIntPtr newPtr = UIntPtr.Add(ptr, ctr);
         Console.Write("{0}   ", newPtr);
      }      
   }
}
// The example displays the following output:
//       1   2   3   4   5   6   7   8   9   10
open System

let arr = [| 1; 2; 3; 4; 5; 6; 7; 8; 9; 10 |]
let ptr = UIntPtr(uint arr[0])
for i = 0 to arr.Length - 1 do
    let newPtr = UIntPtr.Add(ptr, i)
    printf $"{newPtr}   "
// The example displays the following output:
//       1   2   3   4   5   6   7   8   9   10
Module Example
   Public Sub Main()
      Dim arr() As Integer = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 }
      Dim ptr As UIntPtr = CType(arr(0), UIntPtr)
      For ctr As Integer= 0 To arr.Length - 1
         Dim newPtr As UIntPtr = UIntPtr.Add(ptr, ctr)
         Console.Write("{0}   ", newPtr)
      Next
   End Sub
End Module
' The example displays the following output:
'       1   2   3   4   5   6   7   8   9   10

Commenti

Il Add metodo non genera un'eccezione se il risultato è troppo grande per rappresentare come intero senza segno nel processo di esecuzione. Invece, l'operazione di aggiunta viene eseguita in un contesto deselezionato.

Le lingue che non supportano l'overload degli operatori o gli operatori personalizzati possono usare questo metodo per aggiungere un offset al valore di un puntatore.

Si applica a

Vedi anche