Compartilhar via


Campo Marshal.SystemMaxDBCSCharSize

 

Dica

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

Representa o tamanho máximo de um tamanho DBCS (conjunto de caracteres de byte duplo), em bytes, para o sistema operacional atual. Este campo é somente leitura.

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

Sintaxe

public static readonly int SystemMaxDBCSCharSize
public:
static initonly int SystemMaxDBCSCharSize
static val SystemMaxDBCSCharSize : int
Public Shared ReadOnly SystemMaxDBCSCharSize As Integer

Valor do Campo

Type: System.Int32

Exemplos

O exemplo a seguir demonstra o SystemDefaultCharSize campo. Este exemplo de código é parte de um exemplo maior fornecido para a Marshal classe.

// Demonstrate the use of public static fields of the Marshal class.
Console.WriteLine("SystemDefaultCharSize={0}, SystemMaxDBCSCharSize={1}",
    Marshal.SystemDefaultCharSize, Marshal.SystemMaxDBCSCharSize);
' Demonstrate the use of public static fields of the Marshal class.
Console.WriteLine("SystemDefaultCharSize={0}, SystemMaxDBCSCharSize={1}", Marshal.SystemDefaultCharSize, Marshal.SystemMaxDBCSCharSize)
// Demonstrate the use of public static fields of the Marshal
// class.
Console::WriteLine(
    "SystemDefaultCharSize={0},SystemMaxDBCSCharSize={1}",
    Marshal::SystemDefaultCharSize,
    Marshal::SystemMaxDBCSCharSize);

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
Windows Phone
Disponível desde 8.1

Confira Também

StringToHGlobalAnsi
StringToCoTaskMemAnsi
Classe Marshal
Namespace System.Runtime.InteropServices

Retornar ao início