using System; using System.Runtime.InteropServices; using Cpp2IlInjected; namespace System { /// Specifies whether applicable method overloads include or omit empty substrings from the return value. // Token: 0x0200013A RID: 314 [Token(Token = "0x200013A")] [Flags] [ComVisible(false)] public enum StringSplitOptions { /// The return value includes array elements that contain an empty string // Token: 0x040004BD RID: 1213 [Token(Token = "0x40004BD")] None = 0, /// The return value does not include array elements that contain an empty string // Token: 0x040004BE RID: 1214 [Token(Token = "0x40004BE")] RemoveEmptyEntries = 1 } }