From 2842f1e429c2a893f4d084065d7437c8d7b339e7 Mon Sep 17 00:00:00 2001 From: akshatha-harshitha <44336836+akshatha-harshitha@users.noreply.github.com> Date: Sun, 21 Oct 2018 16:01:55 +0530 Subject: [PATCH] Update index.md Rephrasing confusing use of multiple "support" word usage --- docs/csharp/programming-guide/concepts/threading/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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).