Click or drag to resize

ExtensionMethods.AddRange<T> Method

Add itemsToAdd to me

Namespace:  SanteDB
Assembly:  SanteDB.Core.Model (in SanteDB.Core.Model.dll) Version: 3.0.481-alpha
Syntax
public static void AddRange<T>(
	this IList<T> me,
	IEnumerable<T> itemsToAdd
)

Parameters

me
Type: System.Collections.Generic.IList<T>

[Missing <param name="me"/> documentation for "M:SanteDB.ExtensionMethods.AddRange``1(System.Collections.Generic.IList{``0},System.Collections.Generic.IEnumerable{``0})"]

itemsToAdd
Type: System.Collections.Generic.IEnumerable<T>

[Missing <param name="itemsToAdd"/> documentation for "M:SanteDB.ExtensionMethods.AddRange``1(System.Collections.Generic.IList{``0},System.Collections.Generic.IEnumerable{``0})"]

Type Parameters

T

[Missing <typeparam name="T"/> documentation for "M:SanteDB.ExtensionMethods.AddRange``1(System.Collections.Generic.IList{``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 IList<T>. 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