using System; using System.Runtime.InteropServices; namespace System { /// Specifies whether applicable method overloads include or omit empty substrings from the return value. /// 1 // Token: 0x020006AB RID: 1707 [Flags] [ComVisible(false)] public enum StringSplitOptions { /// The return value includes array elements that contain an empty string // Token: 0x040019B8 RID: 6584 None = 0, /// The return value does not include array elements that contain an empty string // Token: 0x040019B9 RID: 6585 RemoveEmptyEntries = 1 } }