15 references to InnerList
dotnet-svcutil-lib (15)
Shared\Options\ListValue.cs (15)
37
this.
InnerList
.Insert(index, CastValue(e.Value));
44
this.
InnerList
.RemoveAt(index);
67
public int Count { get { return this.
InnerList
.Count; } }
75
public object SyncRoot { get { return this.
InnerList
; } }
83
get { return this.
InnerList
[index]; }
125
for (int idx = this.
InnerList
.Count - 1; idx >= 0; idx--)
138
return this.
InnerList
.Contains(value);
148
return this.
InnerList
.IndexOf(value);
179
this.
InnerList
.Sort();
194
this.
InnerList
.CopyTo(array, index);
199
return this.
InnerList
.GetEnumerator();
204
return this.
InnerList
.GetEnumerator();
209
return this.
InnerList
.GetEnumerator();
215
var value = this.
InnerList
.Count > 0 ? this.
InnerList
.Select(i => $"\"{i}\"").Aggregate((str, s) => $"{str}, {s}") : string.Empty;