Lines Matching defs:list
11 // notice, this list of conditions and the following disclaimer.
13 // copyright notice, this list of conditions and the following disclaimer
195 /// Merge the values in <paramref name="other" /> into this field. For each list
210 /// Returns a new list containing all of the given specified values from
213 /// null is returned. Otherwise, either a new list is created (if <paramref name="current" />
276 /// Adds <paramref name="value"/> to the <paramref name="list"/>, creating
277 /// a new list if <paramref name="list"/> is null. The list is returned - either
278 /// the original reference or the new list.
280 private static List<T> Add<T>(List<T> list, T value)
282 if (list == null)
284 list = new List<T>();
286 list.Add(value);
287 return list;