 | ExtensionMethodsAddRangeT Method |
Add itemsToAdd to me
Namespace: SanteDBAssembly: SanteDB.Core.Model (in SanteDB.Core.Model.dll) Version: 3.0.2081-alpha+0a330d5f5a5d3cb3e6e945ef530e94ac5671b49c
Syntaxpublic 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 IListT
[Missing <param name="me"/> documentation for "M:SanteDB.ExtensionMethods.AddRange``1(System.Collections.Generic.IList{``0},System.Collections.Generic.IEnumerable{``0})"]
- itemsToAdd IEnumerableT
[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