Click or drag to resize
DataExtensionsAddRangeT Method
Adds range of items to hashset.

Namespace: CMS.DataEngine
Assembly: CMS.DataEngine (in CMS.DataEngine.dll) Version: 9.0.0
Syntax
C#
public static void AddRange<T>(
	this ISet<T> instance,
	IEnumerable<T> range
)

Parameters

instance
Type: System.Collections.GenericISetT
Hashset to add to.
range
Type: System.Collections.GenericIEnumerableT
List of items to add.

Type Parameters

T

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type ISetT. 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