[Missing <summary> documentation for "M:NHibernate.Linq.TypeHelperExtensionMethods.ForEach``1(System.Collections.Generic.IEnumerable{``0},System.Action{``0})"]

Namespace: NHibernate.Linq
Assembly: NHibernate (in NHibernate.dll) Version: 3.2.0.4000 (3.2.0.4000)

Syntax

C#
public static void ForEach<T>(
	this IEnumerable<T> query,
	Action<T> method
)
Visual Basic
<ExtensionAttribute> _
Public Shared Sub ForEach(Of T) ( _
	query As IEnumerable(Of T), _
	method As Action(Of T) _
)
Visual C++
[ExtensionAttribute]
public:
generic<typename T>
static void ForEach(
	IEnumerable<T>^ query, 
	Action<T>^ method
)

Parameters

query
Type: System.Collections.Generic..::..IEnumerable<(Of <(<'T>)>)>

[Missing <param name="query"/> documentation for "M:NHibernate.Linq.TypeHelperExtensionMethods.ForEach``1(System.Collections.Generic.IEnumerable{``0},System.Action{``0})"]

method
Type: System..::..Action<(Of <(<'T>)>)>

[Missing <param name="method"/> documentation for "M:NHibernate.Linq.TypeHelperExtensionMethods.ForEach``1(System.Collections.Generic.IEnumerable{``0},System.Action{``0})"]

Type Parameters

T

[Missing <typeparam name="T"/> documentation for "M:NHibernate.Linq.TypeHelperExtensionMethods.ForEach``1(System.Collections.Generic.IEnumerable{``0},System.Action{``0})"]

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type IEnumerable<(Of <(<'T>)>)>. When you use instance method syntax to call this method, omit the first parameter. For more information, see or .

See Also