Performs specified action on each element of the collection.

Namespace: Limilabs.Mail
Assembly: Mail (in Mail.dll) Version: 3.0.12102.1426

Syntax

C#
void ForEach(
	Action<MimeData> action
)
Visual Basic
Sub ForEach ( _
	action As Action(Of MimeData) _
)
Visual C++
void ForEach(
	Action<MimeData^>^ action
)

Parameters

action
Type: System..::..Action<(Of <(<'MimeData>)>)>
Action that will be performed on each element of the collection.

See Also