---
title: "When to use PLINQ?"  
description: "When to use PLINQ?"  
author: "Anupam Mishra"  
published: 2016-01-14  
updated: 2016-01-24  
canonical: https://www.mindstick.com/forum/33875/when-to-use-plinq  
category: "c#"  
tags: ["c#", ".net"]  
reading_time: 1 minute  

---

# When to use PLINQ?

I want to know which [scenario](https://yourviews.mindstick.com/view/81221/sports-will-change-the-education-scenario) PLINQ is better? Please give me a answer.\
thank you\

## Replies

### Reply by Shiva Shukla

PLINQ is a set of LINQ extensions that can be used to operate on lists in parallel through methods such as the LINQ Select statement. You can just place the extension AsParallel before the Select call inside your LINQ statement and the software will attempt to take advantage of multiple threads in your system to perform the calculation in the LINQ statement concurrently when acting upon a collection. If you want to get load balancing you can use the Partitioner.\


---

Original Source: https://www.mindstick.com/forum/33875/when-to-use-plinq

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
