1 posts in total

Parallel

Posts tagged

초간단 병렬처리 Parallel ForEach 문

by Justin Yoo · 1 min read

배치작업을 할 때 쓰일 수 있는 상당히 간단하고 유용한 코드 스니펫입니다. public static class Extensions { public static void ParallelForEach<T>(this List<T> list, Action<T> action) {