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: 0x02000141 RID: 321 [Token(Token = "0x2000141")] [Flags] [ComVisible(false)] public enum StringSplitOptions { /// The return value includes array elements that contain an empty string // Token: 0x040004C7 RID: 1223 [Token(Token = "0x40004C7")] None = 0, /// The return value does not include array elements that contain an empty string // Token: 0x040004C8 RID: 1224 [Token(Token = "0x40004C8")] RemoveEmptyEntries = 1 } }