// Token: 0x06001233 RID: 4659 // RVA: 0x000110D4 File Offset: 0x0000F2D4 public void Remove(Class157 class157_0) { this.arrayList_0.Remove(class157_0); }
// Token: 0x06001234 RID: 4660 // RVA: 0x0006137C File Offset: 0x0005F57C public static void smethod_7(StringCollection stringCollection_0, Class158 class158_0, Class157 class157_0) { if (class157_0 != null) { class158_0.Remove(class157_0); int i = int.Parse(class157_0.Value); stringCollection_0.RemoveAt(i); while (i < stringCollection_0.Count) { if (Class174.smethod_2(stringCollection_0[i])) { break; } if (stringCollection_0[i][0] != '\t' && stringCollection_0[i][0] != ' ') { return; } stringCollection_0.RemoveAt(i); } } }
// Token: 0x06001226 RID: 4646 // RVA: 0x00011074 File Offset: 0x0000F274 public void Add(Class157 class157_0) { this.arrayList_0.Add(class157_0); }
// Token: 0x0600122E RID: 4654 // RVA: 0x000610D0 File Offset: 0x0005F2D0 public static string smethod_3(IList ilist_0, Class157 class157_0) { string text = string.Empty; if (class157_0 != null && class157_0.Value != null) { int num = Convert.ToInt32(class157_0.Value, CultureInfo.InvariantCulture); text = ((string)ilist_0[num]).Substring(class157_0.Name.Length + ":".Length).TrimStart(new char[0]); for (int i = num + 1; i < ilist_0.Count; i++) { string text2 = (string)ilist_0[i]; if (text2.Length == 0) { return text; } if (!text2[0].Equals('\t') && !text2[0].Equals(' ')) { return text; } text += text2.Trim(); } } return text; }