| ExtensionMethodsAddRangeT 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
)
<ExtensionAttribute>
Public Shared Sub AddRange(Of T) (
me As IList(Of T),
itemsToAdd As IEnumerable(Of T)
)
public:
[ExtensionAttribute]
generic<typename T>
static void AddRange(
IList<T>^ me,
IEnumerable<T>^ itemsToAdd
)
[<ExtensionAttribute>]
static member AddRange :
me : IList<'T> *
itemsToAdd : IEnumerable<'T> -> unit
Parameters
- me
- Type: System.Collections.GenericIListT
[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.GenericIEnumerableT
[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
IListT. 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