7 references to ThrowArgumentNull
System.Windows.Forms.Primitives (7)
System\Windows\Forms\NonNullCollection.cs (7)
27_list[index] = value ?? ThrowArgumentNull(nameof(value)); 38_list.Add(item ?? ThrowArgumentNull(nameof(item))); 54_list.Insert(index, item ?? ThrowArgumentNull(nameof(item))); 73ThrowArgumentNull(nameof(items)); 87int index = ((IList)_list).Add(value ?? ThrowArgumentNull(nameof(value))); 98((IList)_list).Insert(index, value ?? ThrowArgumentNull(nameof(value))); 109((IList)_list)[index] = value ?? ThrowArgumentNull(nameof(value));