Marshal.SystemDefaultCharSize-Feld
Veröffentlicht: Oktober 2016
Stellt die Standardzeichengröße für das System dar. Der Standardwert ist 2 für Unicode-Systeme und 1 für ANSI-Systeme. Dieses Feld ist schreibgeschützt.
Namespace: System.Runtime.InteropServices
Assembly: mscorlib (in mscorlib.dll)
Syntax
public static readonly int SystemDefaultCharSize
public:
static initonly int SystemDefaultCharSize
static val SystemDefaultCharSize : int
Public Shared ReadOnly SystemDefaultCharSize As Integer
Feldwert
Type: System.Int32
Beispiele
Das folgende Beispiel veranschaulicht die SystemDefaultCharSize Feld. Dieses Codebeispiel ist Teil eines umfangreicheren Beispiels für die Marshal Klasse.
// 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);
Versionsinformationen
Universelle Windows-Plattform
Verfügbar seit 8
.NET Framework
Verfügbar seit 1.1
Portierbare Klassenbibliothek
Unterstützt in: portierbare .NET-Plattformen
Silverlight
Verfügbar seit 2.0
Windows Phone Silverlight
Verfügbar seit 7.0
Windows Phone
Verfügbar seit 8.1
Siehe auch
PtrToStringAuto
StringToHGlobalAuto
StringToCoTaskMemAuto
Marshal-Klasse
System.Runtime.InteropServices-Namespace
Zurück zum Anfang