Compartilhar via


Método Marshal.ReadByte (IntPtr)

 

Dica

The .NET API Reference documentation has a new home. Visit the .NET API Browser on docs.microsoft.com to see the new experience.

Lê um único byte da memória não gerenciada.

Namespace:   System.Runtime.InteropServices
Assembly:  mscorlib (em mscorlib.dll)

Sintaxe

[SecurityCriticalAttribute]
public static byte ReadByte(
    IntPtr ptr
)
public:
[SecurityCriticalAttribute]
static unsigned char ReadByte(
    IntPtr ptr
)
[<SecurityCriticalAttribute>]
static member ReadByte : 
        ptr:nativeint -> byte
<SecurityCriticalAttribute>
Public Shared Function ReadByte (
    ptr As IntPtr
) As Byte

Parâmetros

  • ptr
    Type: System.IntPtr

    O endereço na memória não gerenciada do qual ler.

Valor Retornado

Type: System.Byte

O byte lido da memória não gerenciada.

Exceções

Exception Condition
AccessViolationException

ptr não é um formato reconhecido.

-ou-

ptr é null.

-ou-

ptr é inválido.

Comentários

ReadBytetem um deslocamento implícito de 0. Esse método permite interação direta com uma matriz de bytes de estilo C não gerenciada, eliminando a despesa de cópia de uma matriz não gerenciada toda (usando Marshal.Copy) em uma matriz separada gerenciada antes de ler os valores de elemento.

Há suporte para leitura de locais de memória desalinhados.

Exemplos

O exemplo a seguir cria um bloco de memória não gerenciada, grava um byte em memória não gerenciada, lê os bytes de memória não gerenciada e, em seguida, descarta a memória não gerenciada.

using System;
using System.Runtime.InteropServices;

 class Example
 {
     static void Main(string[] args)
     {
          // Allocate 1 byte of unmanaged memory.
          IntPtr hGlobal = Marshal.AllocHGlobal(1);

          // Create a new byte.
          byte b = 1;
          Console.WriteLine("Byte written to unmanaged memory: " + b);

          // Write the byte to unmanaged memory.
          Marshal.WriteByte(hGlobal, b);

          // Read byte from unmanaged memory.
          byte c = Marshal.ReadByte(hGlobal);
          Console.WriteLine("Byte read from unmanaged memory: " + c);

          // Free the unmanaged memory.
          Marshal.FreeHGlobal(hGlobal);
          Console.WriteLine("Unmanaged memory was disposed.");
     }
}
Imports System
Imports System.Runtime.InteropServices

Module Example
    Sub Main()
         ' Allocate 1 byte of unmanaged memory.
         Dim hGlobal As IntPtr = Marshal.AllocHGlobal(1)

         ' Create a new byte.
         Dim b As Byte = 1

         Console.WriteLine("Byte written to unmanaged memory: {0}", b)

         ' Write the byte to unmanaged memory.
         Marshal.WriteByte(hGlobal, b)

         ' Read byte from unmanaged memory.
         Dim c As Byte = Marshal.ReadByte(hGlobal)
         Console.WriteLine("Byte read from unmanaged memory: {0}", c)

         ' Free the unmanaged memory.
         Marshal.FreeHGlobal(hGlobal)
         Console.WriteLine("Unmanaged memory was disposed.")
    End Sub
End Module

O exemplo a seguir demonstra como usar o ReadByte método para ler o valor de um caractere não gerenciado.

using namespace System;
using namespace System::Runtime::InteropServices;



void main()
{
    // Create an unmanaged byte.
    const char * myString = "b";

    // Read the c string as a managed byte.
        Byte ^ myManagedByte = Marshal::ReadByte((IntPtr) (char *) myString);

    // Display the byte to the console.
    Console::WriteLine(myManagedByte);
}

Segurança

SecurityCriticalAttribute

requires full trust for the immediate caller. This member cannot be used by partially trusted or transparent code.

Informações de Versão

Plataforma Universal do Windows
Disponível desde 8
.NET Framework
Disponível desde 1.1
Biblioteca de Classes Portátil
Com suporte no: plataformas portáteis do .NET
Silverlight
Disponível desde 2.0
Windows Phone Silverlight
Disponível desde 7.0
Windows Phone
Disponível desde 8.1

Confira Também

Copy
ReadByte Sobrecarga
Classe Marshal
Namespace System.Runtime.InteropServices

Retornar ao início