TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
C# Corner
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
About Parallel
Share
facebook
twitter
linkedIn
Reddit
Topics
No topic found
Content Filter
Articles
Videos
Blogs
News
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
Jitendra Mesavaniya (6)
Ajay Kumar (4)
Munib Butt (4)
Gul Md Ershad (3)
Manikavelu Velayutham (3)
Pradeep Shet (2)
Suresh Paldia (2)
Tural Suleymani (2)
Keyur (2)
Jin Necesario (2)
Michal Habalcik (2)
Prasoon (2)
Sanjay Kumar (1)
Lokendra Singh (1)
Abhishek Duppati (1)
Ayush Gupta (1)
Princy Gupta (1)
Dipal Choksi (1)
Sanjay Kumar (1)
Akkiraju Ivaturi (1)
Ashutosh Singh (1)
Vidya Vrat Agarwal (1)
Muzaffar Ur Rahman (1)
Banketeshvar Narayan (1)
Mukesh Kumar (1)
Ashish Bajpai (1)
Kashif Asif (1)
Jay Krishnareddy (1)
Lokesh Varman (1)
Bardia Mostafavi (1)
Rafal Wozniak (1)
Ravi Raghav (1)
Shantanu (1)
Amit Choudhary (1)
Nikhil Bhojani (1)
Raman Sama (1)
Anas Chaudhary (1)
Chandru D (1)
Khaja Moizuddin (1)
Guest User (1)
Manpreet Singh (1)
Veda Bs (1)
Rahul Kumar Saxena (1)
Anil Kumar (1)
Praveen Raveendran Pillai (1)
Shweta Lodha (1)
Anubhav Chaudhary (1)
Vijay Prativadi (1)
Dave Richter (1)
Paul Abraham (1)
Yuancai Ye (1)
Related resources for Parallel
No resource found
Parallel Task in .Net 4.0
10/14/2024 6:07:08 AM.
Today I will be talking about a new feature of Parallel Programming that was added to .Net 4.0.
An overview of the Task Parallel Library (TPL) in C#
9/17/2024 5:07:16 AM.
The Task Parallel Library (TPL) is a collection of public types and APIs within the .NET framework that facilitates the integration of parallelism and concurrency into applications.
Explain Multiprocessing in Python
8/9/2024 5:40:54 AM.
Explore Python's multiprocessing module to achieve parallelism and optimize CPU-bound tasks. Learn how to create and manage processes, utilize process pools, and improve performance through concur
Enhancing Performance and Safety with System.Threading.Lock in .NET 9 and C# 13
7/22/2024 2:26:10 AM.
Explore the new System.Threading.Lock in .NET 9 and C# 13 for enhanced multithreading performance and safety. This article covers its benefits, compiler warnings for misuse, and best practices for loc
Synchronous vs Asynchronous: Task.WaitAll and Task.WhenAll in .NET
7/9/2024 12:38:06 AM.
Synchronous vs Asynchronous: Explore the distinctions between Task.WaitAll and Task.WhenAll in .NET programming. Learn how Task.WaitAll synchronously waits for all tasks to complete, while Task.WhenAl
Concurrency and Parallelism in C#
6/24/2024 11:45:43 AM.
This article introduces concurrency and parallelism in C#, covering key concepts, benefits, and practical examples. Learn how to use async/await for asynchronous programming and the Parallel class for
LINQ vs PLINQ Method Syntax for Efficient C# .NET Data Processing
6/17/2024 5:09:08 AM.
LINQ (Language Integrated Query) and PLINQ (Parallel LINQ) are .NET frameworks for querying data. LINQ offers a declarative syntax for querying various data sources with single-threaded execution, whi
Parallel Programming Using TPL in .NET
6/7/2024 10:21:43 AM.
With today's computers, we have multiple cores that must be equipped to design and develop applications that can utilize these resources. We must develop programs that can run our functions in par
Multithreading in C#
6/6/2024 11:32:01 AM.
In this article, we will learn Multithreading is a parallel way of execution where the application is broken into parts so that it can have more than one execution path at the same time.
Synchronous Asynchronous Blocking Non-Blocking Concurrent Parallel Programming
5/29/2024 6:24:45 AM.
Explore the intricacies of programming paradigms with a comprehensive dive into synchronous, asynchronous, blocking, non-blocking, concurrent, and parallel execution.
New Features in .NET 4.5 and 5.0
5/16/2024 5:51:25 AM.
Discover the latest enhancements in .NET with versions 4.5 and 5.0. Explore async programming using async/await, improved performance, Entity Framework updates, ASP.NET Core (in .NET 5.0), enhanced LI
Unlocking Performance: Exploring PLINQ in .NET C#
5/8/2024 8:40:53 AM.
In today's computing landscape, where multi-core processors are ubiquitous, optimizing the performance of your applications often involves leveraging parallelism. One powerful tool in the .NET dev
Introduction to Task-Based Asynchronous Pattern in C# 4.5: Part I
5/1/2024 11:07:16 AM.
Discover the fundamentals of Task-Based Asynchronous Pattern in C# 4.5: Part I. Explore asynchronous programming, concurrency, and the await keyword for efficient parallel computing in .NET Framework
Parallel.For Loop in .NET 4
5/1/2024 11:06:50 AM.
Learn efficient parallel programming with the Parallel.For loop in .NET 4. Harness the Task Parallel Library (TPL) to execute iterations concurrently, optimizing performance through multithreading and
Asynchronous Connection in .NET Framework 4.5
5/1/2024 11:04:28 AM.
Learn about leveraging asynchronous connections in .NET Framework 4.5 for efficient, non-blocking operations. Explore async/await patterns, Task Parallel Library (TPL), AsyncCallback delegate, and asy
Learn Parallel Programming in .NET
4/29/2024 9:57:15 AM.
.NET parallel programming techniques like Task Parallelism and Concurrent Collections. Utilize BlockingCollection to manage concurrent tasks. Explore Task.Factory.StartNew for task creation, Collectio
Exploring the BlockingCollection<T> Class in .NET
4/25/2024 6:56:24 AM.
In the world of concurrent programming in .NET, developers often encounter scenarios where multiple threads need to communicate and synchronize access to shared data structures. In this article, we
Best Practices for Threading in .NET C#
4/24/2024 6:26:03 AM.
Threading is a powerful feature in .NET C# that allows developers to execute multiple tasks concurrently. In this article, we'll explore best practices for managed threading in .NET C#, covering t
ConcurrentBag<T> in C#: Thread-Safe Collection Guide
4/23/2024 8:49:54 AM.
In the world of concurrent programming in C#, managing data safely across multiple threads is a paramount concern. In this article, we'll delve into ConcurrentBag<T>, its usage, and provide
Parallel Programming with SemaphoreSlim in .NET
4/9/2024 5:59:21 AM.
SemaphoreSlim in .NET enables efficient concurrency management, regulating resource access and ensuring thread safety. It's crucial for robust parallel programming, offering scalability without sa
Multithreading With .NET
3/29/2024 6:46:05 AM.
Multithreading allows a program to run multiple threads concurrently. This article explains how multithreading works in .NET. This article covers the entire range of threading areas from thread creati
Multithreading in C#: Processes, Threads, and Performance Optimization
2/7/2024 10:06:03 AM.
In this article, we will learn to Explore how threads are managed, synchronized, and executed at the kernel level, shedding light on the core mechanisms of concurrency and parallelism.
ThreadPool in C#: Practical Examples
1/10/2024 5:48:08 AM.
Explore practical examples of using ThreadPool in C# for parallel tasks. Learn how to queue work items, handle synchronization, monitor and manage ThreadPool, and follow best practices for efficient c
Create a Parallel Approval Process Using Power Automate
12/21/2023 5:34:26 AM.
Unlock the potential of Power Automate with this step-by-step guide to creating a parallel approval process. Learn to navigate Power Automate, set up approval actions, and manage conditions for seamle
Task Parallel Library (TPL) in C#
12/12/2023 8:48:49 AM.
The Task Parallel Library (TPL) in C# revolutionizes parallel programming, offering simplicity and scalability. This guide covers TPL components, benefits, and examples, showcasing its role in buildin
Difference Between Concurrency and Parallelism in C#
11/9/2023 5:31:39 AM.
The article you provided gives a comprehensive overview of the concepts of concurrency and parallelism and their relevance in C# programming. It highlights the distinctions between the two concepts an
.NET Task Parallel Library vs System.Threading.Channels
10/18/2023 6:49:02 AM.
Concurrency in modern software development is vital for applications to efficiently manage multiple tasks simultaneously. In the .NET ecosystem, developers have two powerful tools for concurrency: the
Producer Consumer Pattern In C#
10/12/2023 10:03:56 AM.
In this article, you will learn about producer consumer pattern in C#.
Parallel.ForEach() Vs Foreach() Loop in C#
10/11/2023 5:50:20 AM.
In this article you will learn about the difference between Parallel.ForEach() Vs Foreach() loop in C# language.
Increase Performance Of LINQ By Parallelism
10/5/2023 7:31:33 AM.
Parallelism solves many problems in the computing world if done in the right way; parallelism is not good if the task is small and needs synchronization of resources, such a scenario would hurt perfor
Task Parallel Library 101 Using C#
9/25/2023 5:15:32 AM.
Task Parallel Library (TPL) provides a level of abstraction to help us to be more effective as developers/programmers when it comes to parallelism. Knowing at least the basics are beneficial. In that
Parallel Programming In C# To Leverage Multicore Processor
8/24/2023 9:23:57 AM.
Parallel Programming in C# to Leverage Multicore Processor is a guide that focuses on harnessing the power of parallelism in C# to efficiently utilize the capabilities of modern multicore processors.
Multithreading In C# .NET
8/24/2023 5:24:08 AM.
If you have a program that execute from top to bottom, it will not be responsive and feasible to build complex applications. So .Net Framework offers some classes to create complex applications.
Types Of Parallelism In C#
4/7/2023 10:04:44 AM.
In this article we are going to explore about the different types of Parallelism and its usage in C#
Running Tasks In Parallel And Collecting Results In C# 11
3/29/2023 5:23:23 AM.
In this article, you wil learn about running tasks in parallel and collecting results in c# 11.
Parallel Programming With OpenMP In C++ - Matrix Multiplication Example
2/22/2023 10:34:26 AM.
Parallel programming is a technique used to improve the performance of applications by splitting the work into multiple threads or processes that can run simultaneously on different CPUs or CPU cores.
Differences Between Multithreaded, Asynchronous, And Parallel Programming
2/6/2023 10:43:37 AM.
In this article, we are doing to dive into details of differences between Multithread, Asynchronous and Parallel programming
SIMD, A Parallel Processing At Hardware Level In C#
12/1/2022 5:24:02 AM.
In this article, you will learn about SIMD, a parallel processing at hardware level in c#.
Running Tasks In Parallel
10/3/2022 5:22:37 AM.
In this article, you will learn how to run tasks in Parallel in C#.
CUDA integration with C#
3/31/2022 10:19:36 AM.
This article will focus on how to create an unmanaged dll with CUDA code and use it in a C# program. The example will show some differences between execution times of managed, unmanaged and new .NET 4
A Diagnosis Of Parallel.Foreach
8/2/2021 4:36:20 AM.
In this article, you will learn about the diagnosis of Parallel.Foreach.
.NET Parallel Programming with Events
1/1/2021 9:50:54 AM.
Many times the Application needs to be notified about what is happening inside a Parallel Task and also to get data (if any) from the Task in real time. For this, Events can be used with Tasks.
Exception Handling in Parallel Task Library
11/27/2020 2:58:15 AM.
Here, I will explain Exception Handling in a Parallel Task Library.
Parallel Programming Using New TPL Library in .Net 4.0
11/26/2020 4:40:39 AM.
With the .Net 4.0, you are provided with the brand new parallel programming language library called “Task Parallel Library” (TPL). Using the classes in the System.Threading.Tasks namespace, you can bu
Debug Async Code
6/15/2020 5:20:23 AM.
In this article, you will learn how to debug async code.
Understanding Parallel Class (Parallel Loops) using C#
2/16/2020 11:03:08 PM.
Learning the foundations of looping constructs in any language is a must and which are sequential in nature. However; once you have mastered it, learning parallel loops could be your next move. Learni
Understanding Parallel Programming Using Pthreads In PHP
2/13/2020 7:59:02 AM.
PHP is the appeal of a simple synchronous, single-threaded programming which attracts most developers. And for significant performance improvement,Pthreads can enhance the experience of your website i
Parallel Sorting, Exact Numeric Operations and Stamped Lock in Java 8
9/28/2019 2:28:13 PM.
This article describes some of the new features of Java 8
Microsoft Flow In 10 Days - Day Four - Approval Flow (Sequential And Parallel)
6/10/2018 11:35:36 PM.
Today, I will be covering the day four topics of the MS Flow series. If you have not checked my previous post about Microsoft Flow, I would recommend you have a look at it.
Execution Of Test Cases In Sequential And Parallel Using Selenium Webdriver
7/18/2017 3:12:41 PM.
Selenium is an open source tool, which is used to execute the test scripts or the test cases on web applications. As we know Selenium is an open source tool, which supports various programming languag
Parallel Processing Messages Based On SQL Server
4/13/2016 2:05:36 PM.
In this article you will learn about Parallel Processing Messages based on SQL Server.
Task Parallelism In Multithreading
2/17/2016 9:06:28 AM.
In this article you will lean about Task Parallelism in Multithreading.
Action: Parallel Block In Nintex Workflows Through SharePoint 2013 And Office 365
10/27/2015 4:26:46 AM.
In this article you will learn Parallel Block in Nintex Workflows through SharePoint 2013 and Office 365.
Learn Parallel Programming
10/24/2015 11:08:09 AM.
In this article you will learn about Parallel Programming. Parallel programming splits the work into independent chunks of work and then carries out these works simultaneously.
Different Ways To Create Task Parallel Library (TPL Threads)
10/12/2015 3:01:58 AM.
This article explains the concept to create thread using TPL (Task Parallel Library) with different approaches.
Arranging the Long List of Choice Field Values in Parallel in SharePoint Using JavaScript
5/1/2015 2:17:42 PM.
This article explains how to arrange a long list of choice field values in parallel and on the click of “Select all” for the choice fields all the choice values will be selected in SharePoint using JavaScript.
Parallel Programming Part 1: Introducing Task Programming Library
4/16/2015 1:10:23 PM.
Introductory part of the parallel programming series in C# focused solely on the new Task Programming Library.
Send Mail to Multiple Users Using Parallel Programming in ASP.Net C#
2/20/2015 5:31:46 PM.
This article shows how to send mail to multiple users using parallel programming.
Asynchronous and Parallel Programming
2/12/2015 12:47:08 AM.
This article provides a basic understanding of the two hot topics, asynchronous programming and parallel programming irrespective of the programming language.
Parallel Programming Part 2: Waiting For Tasks and Exceptions Handling
1/25/2015 11:12:47 PM.
This is the second part of the parallel programming series focused on waiting for tasks problematics and exception handling.
File Search Using Parallel Programming in C#
5/28/2014 6:46:29 PM.
In this article I shall demonstrate how to do a file search using parallel programming in C#.
Controlling Concurrent Execution in Parallel Loops
4/10/2014 11:05:35 AM.
This article focuses on how to control the creation of multiple concurrent tasks for parallel loops.
Send Bulk Mails Faster
4/5/2014 3:52:01 PM.
This article provides an application that will send Emails nearly 7 times faster than the earlier application.
Parallel LINQ in C#
11/29/2012 12:14:25 PM.
Today, in this article let's play around with one of the interesting and most useful concepts in C# with LINQ.
Parallel Programming - How it works internally?
10/13/2012 5:07:15 AM.
In this article we will look into what is meant by parallel programming; how it works internally in the CPU.
Parallel Computing – Visual Studio 2010 - .NET 4.0
9/30/2012 2:47:12 AM.
Microsoft's Visual Studio 2010 & .NET Framework 4 provided a way to achieve this by using the Parallel Library and Parallel LINQ in it.
Parallel Extension in .Net
8/8/2011 5:37:16 PM.
This tutorial gives the idea of Parallel Extension being built by Microsoft to many of its existing features.
Potential Pitfalls in Parallel Programming
3/19/2011 12:20:26 AM.
Let’s see the potential pitfalls of the parallel programming in this article.
Parallel.Invoke in .Net Framework 4
11/15/2010 1:21:44 AM.
In this article let's see about Parallel.Invoke method.
Random Number Generation and Windows Forms Encryption via C# Parallel Programming
9/7/2010 11:59:02 PM.
An article that describes Encryption and Random Number Generation in C# TPL Parallel code.
Parallel Extension to LINQ
6/22/2009 12:28:09 AM.
This article gives you an idea how to utilize Parallel Extension to Linq or PLINQ.
Synchronization in Parallel threads
1/28/2006 7:03:10 AM.
The Threads makes us able to run multitasks at a time. In fact Computers (John von Neumann Architecture) don't execute the tasks parallel .The OS gives threads permission (depend on thread priority) to work on CPU. The sufficient degree of parallelism keeps the CPU busy and it is efficient.
Glue IIS with Business Logical Tier using Batching, Asynchrony, and Parallel Computation
12/20/2005 12:36:50 AM.
A great and unusual way to boost your web application performance and scalability five times or more.