using System; using Cpp2IlInjected; namespace System.Runtime.InteropServices { /// Dictates which character set marshaled strings should use. // Token: 0x0200059A RID: 1434 [Token(Token = "0x200059A")] [ComVisible(true)] [Serializable] public enum CharSet { /// This value is obsolete and has the same behavior as . // Token: 0x040019F1 RID: 6641 [Token(Token = "0x40019F1")] None = 1, /// Marshal strings as multiple-byte character strings. // Token: 0x040019F2 RID: 6642 [Token(Token = "0x40019F2")] Ansi, /// Marshal strings as Unicode 2-byte characters. // Token: 0x040019F3 RID: 6643 [Token(Token = "0x40019F3")] 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: 0x040019F4 RID: 6644 [Token(Token = "0x40019F4")] Auto } }