using System;
namespace System.Runtime.InteropServices
{
/// Dictates which character set marshaled strings should use.
// Token: 0x020002F8 RID: 760
[ComVisible(true)]
[Serializable]
public enum CharSet
{
/// This value is obsolete and has the same behavior as .
// Token: 0x04000CDD RID: 3293
None = 1,
/// Marshal strings as multiple-byte character strings.
// Token: 0x04000CDE RID: 3294
Ansi,
/// Marshal strings as Unicode 2-byte characters.
// Token: 0x04000CDF RID: 3295
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: 0x04000CE0 RID: 3296
Auto
}
}