Click or drag to resize

ListExtensionsFillWithT(ICollectionT, IEnumerableT) Method

[Missing <summary> documentation for "M:Altaxo.Collections.ListExtensions.FillWith``1(System.Collections.Generic.ICollection{``0},System.Collections.Generic.IEnumerable{``0})"]


Namespace: Altaxo.Collections
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public static void FillWith<T>(
	this ICollection<T> collection,
	IEnumerable<T> itemsToAdd
)

Parameters

collection  ICollectionT

[Missing <param name="collection"/> documentation for "M:Altaxo.Collections.ListExtensions.FillWith``1(System.Collections.Generic.ICollection{``0},System.Collections.Generic.IEnumerable{``0})"]

itemsToAdd  IEnumerableT

[Missing <param name="itemsToAdd"/> documentation for "M:Altaxo.Collections.ListExtensions.FillWith``1(System.Collections.Generic.ICollection{``0},System.Collections.Generic.IEnumerable{``0})"]

Type Parameters

T

[Missing <typeparam name="T"/> documentation for "M:Altaxo.Collections.ListExtensions.FillWith``1(System.Collections.Generic.ICollection{``0},System.Collections.Generic.IEnumerable{``0})"]

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type ICollectionT. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
See Also