diff --git a/docs/csharp/programming-guide/concepts/threading/index.md b/docs/csharp/programming-guide/concepts/threading/index.md index 67008ba49a8db..aa55e80f8f956 100644 --- a/docs/csharp/programming-guide/concepts/threading/index.md +++ b/docs/csharp/programming-guide/concepts/threading/index.md @@ -22,7 +22,7 @@ Threading enables your C# program to perform concurrent processing so that you c A common strategy is to use worker threads to perform time-consuming or time-critical tasks that do not require many of the resources used by other threads. Naturally, some resources in your program must be accessed by multiple threads. For these cases, the namespace provides classes for synchronizing threads. These classes include , , , , and . - You can use some or all these classes to synchronize the activities of multiple threads, but some support for threading is supported by the C# language. For example, the [Lock Statement](../../../../csharp/language-reference/keywords/lock-statement.md) provides synchronization features through implicit use of . + You can use some or all these classes to synchronize the activities of multiple threads, but threading is supported by the C# language,minimally. For example, the [Lock Statement](../../../../csharp/language-reference/keywords/lock-statement.md) provides synchronization features through implicit use of . > [!NOTE] > Beginning with the [!INCLUDE[net_v40_long](~/includes/net-v40-long-md.md)], multithreaded programming is greatly simplified with the and classes, [Parallel LINQ (PLINQ)](../../../../standard/parallel-programming/parallel-linq-plinq.md), new concurrent collection classes in the namespace, and a new programming model that is based on the concept of tasks rather than threads. For more information, see [Parallel Programming](../../../../../docs/standard/parallel-programming/index.md).