List<T>.ForEach(Action<T>) 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
List<T>의 각 요소에 대해 지정된 작업을 수행합니다.
public:
void ForEach(Action<T> ^ action);
public void ForEach (Action<T> action);
member this.ForEach : Action<'T> -> unit
Public Sub ForEach (action As Action(Of T))
매개 변수
예외
action
이(가) null
인 경우
컬렉션의 요소가 수정된 경우
예제
다음 예제에서는 개체의 Action<T> 내용을 인쇄 하는 대리자를 사용 하는 방법을 List<T> 보여 줍니다. 이 예제에서는 메서드를 Print
사용하여 목록의 내용을 콘솔에 표시합니다.
참고
C# 예제에서는 메서드를 사용하여 Print
콘텐츠를 표시하는 것 외에도 익명 메서드 를 사용하여 결과를 콘솔에 표시하는 방법을 보여 줍니다.
List<string> names = new List<string>();
names.Add("Bruce");
names.Add("Alfred");
names.Add("Tim");
names.Add("Richard");
// Display the contents of the list using the Print method.
names.ForEach(Print);
// The following demonstrates the anonymous method feature of C#
// to display the contents of the list to the console.
names.ForEach(delegate(string name)
{
Console.WriteLine(name);
});
void Print(string s)
{
Console.WriteLine(s);
}
/* This code will produce output similar to the following:
* Bruce
* Alfred
* Tim
* Richard
* Bruce
* Alfred
* Tim
* Richard
*/
Imports System.Collections.Generic
Class Program
Shared Sub Main()
Dim names As New List(Of String)
names.Add("Bruce")
names.Add("Alfred")
names.Add("Tim")
names.Add("Richard")
' Display the contents of the list using the Print method.
names.ForEach(AddressOf Print)
End Sub
Shared Sub Print(ByVal s As String)
Console.WriteLine(s)
End Sub
End Class
' This code will produce output similar to the following:
' Bruce
' Alfred
' Tim
' Richard
설명
는 Action<T> 전달된 개체에 대해 작업을 수행하는 메서드에 대한 대리자입니다. 현재 List<T> 의 요소는 개별적으로 대리자에게 Action<T> 전달됩니다.
이 메서드는 O(n) 작업이며 여기서 n 은 입니다 Count.
대리자의 본문 Action<T> 에서 기본 컬렉션을 수정하는 것은 지원되지 않으며 정의되지 않은 동작이 발생합니다.
적용 대상
추가 정보
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET