Marshal.FreeHGlobal(IntPtr) Metodo

Definizione

Libera memoria allocata in precedenza dalla memoria non gestita del processo.

[System.Security.SecurityCritical]
public static void FreeHGlobal(IntPtr hglobal);
public static void FreeHGlobal(IntPtr hglobal);

Parametri

hglobal
IntPtr

Handle restituito dalla chiamata corrispondente originale a AllocHGlobal(IntPtr).

Attributi

Esempio

Nell'esempio seguente viene illustrata la chiamata al metodo FreeHGlobal. Questo esempio di codice fa parte di un esempio più ampio fornito per la classe Marshal.

// Demonstrate how to call GlobalAlloc and
// GlobalFree using the Marshal class.
IntPtr hglobal = Marshal.AllocHGlobal(100);
Marshal.FreeHGlobal(hglobal);

Nell'esempio seguente viene illustrato come convertire il contenuto di una classe gestita String in memoria non gestita e quindi eliminare la memoria non gestita al termine.

using System;
using System.Runtime.InteropServices;
using System.Threading;

class MainFunction
{
    static void Main()
    {
        Console.WriteLine("\nStringToGlobalAnsi\n");

        // Create a managed string.
        String  managedString = "I am a managed String";
        Console.WriteLine("1) managedString = " + managedString);

        // Marshal the managed string to unmanaged memory.
        IntPtr stringPointer = (IntPtr)Marshal.StringToHGlobalAnsi(managedString);
        Console.WriteLine("2) stringPointer = {0}", stringPointer);

        // Get the string back from unmanaged memory.
        String RetrievedString = Marshal.PtrToStringAnsi(stringPointer);
        Console.WriteLine("3) Retrieved from unmanaged memory = " + RetrievedString);

        // Always free the unmanaged string.
        Marshal.FreeHGlobal(stringPointer);

        // IntPtr handle value is still the same:
        Console.WriteLine("4) stringPointer = " + stringPointer);

        // However, the data may be cleared after the memory is freed, depending on whether the memory allocated to stringPointer
        // has been reclaimed or not. Uncommenting the following line (Thread.Sleep(1000)) increases the likelihood of the memory being reclaimed.
        // Thread.Sleep(1000);
        String RetrievedString2 = Marshal.PtrToStringAnsi(stringPointer);
        Console.WriteLine("5) RetrievedString2 = " + RetrievedString2);
    }
}

Commenti

Importante

Questo allocatore di memoria nativa è un'API legacy che deve essere usata esclusivamente quando viene chiamato per da API Win32 specifiche nella piattaforma Windows. Quando la destinazione è .NET 6 o versione successiva, usare la classe NativeMemory in tutte le piattaforme per allocare memoria nativa. Quando la destinazione è .NET 6 o versioni precedenti, usare AllocCoTaskMem in tutte le piattaforme per allocare memoria nativa.

È possibile usare FreeHGlobal per liberare memoria dall'heap globale allocato da AllocHGlobal, ReAllocHGlobalo qualsiasi metodo API non gestito equivalente. Se il parametro hglobal è IntPtr.Zero il metodo non esegue alcuna operazione.

FreeHGlobal espone la funzione LocalFree da Kernel32.DLL, che libera tutti i byte in modo che non sia più possibile usare la memoria a cui punta hglobal.

Oltre a FreeHGlobal, la classe Marshal fornisce altri due metodi api di deallocazione della memoria: DestroyStructure e FreeCoTaskMem.

Si applica a

Prodotto Versioni
.NET Core 1.0, Core 1.1, Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9, 10
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 1.1, 1.2, 1.3, 1.4, 1.5, 1.6, 2.0, 2.1
UWP 10.0

Vedi anche