| ExtensionMethodsForEachT Method |
For each item in an enumerable
Namespace:
SanteDB
Assembly:
SanteDB.Core.Model (in SanteDB.Core.Model.dll) Version: 3.0.481-alpha
Syntax public static void ForEach<T>(
IEnumerable<T> me,
Action<T> action
)
Public Shared Sub ForEach(Of T) (
me As IEnumerable(Of T),
action As Action(Of T)
)
public:
generic<typename T>
static void ForEach(
IEnumerable<T>^ me,
Action<T>^ action
)
static member ForEach :
me : IEnumerable<'T> *
action : Action<'T> -> unit
Parameters
- me
- Type: System.Collections.GenericIEnumerableT
[Missing <param name="me"/> documentation for "M:SanteDB.ExtensionMethods.ForEach``1(System.Collections.Generic.IEnumerable{``0},System.Action{``0})"]
- action
- Type: SystemActionT
[Missing <param name="action"/> documentation for "M:SanteDB.ExtensionMethods.ForEach``1(System.Collections.Generic.IEnumerable{``0},System.Action{``0})"]
Type Parameters
- T
[Missing <typeparam name="T"/> documentation for "M:SanteDB.ExtensionMethods.ForEach``1(System.Collections.Generic.IEnumerable{``0},System.Action{``0})"]
See Also