using System; using Cpp2IlInjected; namespace System.Runtime.InteropServices { /// Dictates which character set marshaled strings should use. // Token: 0x0200057B RID: 1403 [Token(Token = "0x200057B")] [ComVisible(true)] [Serializable] public enum CharSet { /// This value is obsolete and has the same behavior as . // Token: 0x0400192E RID: 6446 [Token(Token = "0x400192E")] None = 1, /// Marshal strings as multiple-byte character strings. // Token: 0x0400192F RID: 6447 [Token(Token = "0x400192F")] Ansi, /// Marshal strings as Unicode 2-byte characters. // Token: 0x04001930 RID: 6448 [Token(Token = "0x4001930")] Unicode, /// Automatically marshal strings appropriately for the target operating system. The default is on Windows NT, Windows 2000, Windows XP, and the Windows Server 2003 family; the default is on Windows 98 and Windows Me. Although the common language runtime default is , languages may override this default. For example, by default C# marks all methods and types as . // Token: 0x04001931 RID: 6449 [Token(Token = "0x4001931")] Auto } }