C# Corner
Tech
News
Videos
Forums
Trainings
Books
Live
More
Interviews
Events
Jobs
Learn
Career
Members
Blogs
Challenges
Certifications
Bounties
Contribute
Article
Blog
Video
Ebook
Interview Question
Collapse
Feed
Dashboard
Wallet
Learn
Achievements
Network
Refer
Rewards
SharpGPT
Premium
Contribute
Article
Blog
Video
Ebook
Interview Question
Register
Login
Tags
No tag found
Content Filter
Articles
Videos
Blogs
Resources
News
Forums
Interviews
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
Jitendra Mesavaniya(4)
Ajay Kumar(4)
Munib Butt(4)
Aarav Patel(3)
Nabaraj Ghimire(3)
Saurav Kumar(3)
Nakkeeran Natarajan(3)
Niharika Gupta(2)
Tanuj (2)
Sardar Mudassar Ali Khan (2)
Dashrath Hapani(2)
Vijai Anand Ramalingam(2)
Nandan Hegde(2)
Tural Suleymani(2)
Raj Kumar(2)
Vinit Kumar(2)
Jin Necesario(2)
Kamal Rawat(2)
Gul Md Ershad(2)
Suresh Paldia(1)
Rohit Gupta(1)
Ananya Desai(1)
Riya Patel(1)
Sangeet Shah(1)
Ck Nitin(1)
Tuhin Paul(1)
Patrick Kearns(1)
Shafaet Hossain(1)
John Godel(1)
Rajiv Singh(1)
Allen Oneill(1)
Sanjay Kumar(1)
Lokendra Singh(1)
Ayush Gupta(1)
Ashutosh Singh(1)
Keyur (1)
Muzaffar Ur Rahman(1)
Manoj Mittal(1)
Lokesh Varman(1)
Fuad Hasan(1)
Bardia Mostafavi(1)
Shivam Payasi(1)
Srinivasan Ramamoorthi(1)
Ravi Raghav(1)
Parth Doshi(1)
Debasis Saha(1)
Moh Aatif Naseem (1)
Swati Chavan(1)
Nikhil Bhojani(1)
Raman Sama(1)
Ram Prasad M(1)
Mukesh Kumar(1)
Chandru D(1)
Shweta Lodha(1)
Mohamed Elqassas (1)
Khaja Moizuddin(1)
Priyaranjan K S(1)
Rakesh Trivedi(1)
Sandip G Patil(1)
Ashish Bajpai(1)
Guest User(1)
Emiliano Musso(1)
Banketeshvar Narayan(1)
Manpreet Singh(1)
Sandeep Kumar(1)
Veda Bs(1)
Ankita Kulkarni(1)
Rahul Kumar Saxena(1)
Anil Kumar(1)
Michal Habalcik(1)
Sara Silva(1)
Resources
No resource found
Parallel.Invoke in .Net Framework 4
Nov 15, 2010.
In this article let's see about Parallel.Invoke method.
Python Multiprocessing vs Multithreading: When to Use Each
Jun 03, 2026.
Learn the differences between Python Multiprocessing and Multithreading. Understand the GIL, CPU-bound vs I/O-bound tasks, performance, and best use cases.
How to Use Multithreading in C# to Run Tasks in Parallel?
Apr 07, 2026.
Unlock the power of parallel processing in C# with multithreading! Learn how to use Tasks, async/await, and the Parallel class to boost performance and responsiveness. Master multithreading!
Parallel Processing in .NET with Task Parallel Library (TPL)
Mar 26, 2026.
Unlock parallel processing in .NET using the Task Parallel Library (TPL). Learn how Parallel.For() boosts performance by leveraging multi-core processors efficiently. Optimize CPU-bound tasks!
Parallel LINQ (PLINQ) in C#: Unlocking Multi-Core Performance
Mar 23, 2026.
Unlock multi-core performance in C# with Parallel LINQ (PLINQ). Learn how to parallelize LINQ queries with .AsParallel() for CPU-bound tasks and improve performance. Explore its advantages and disadvantages.
Building High-Throughput Pipelines in C# with TPL Dataflow
Mar 21, 2026.
Build high-throughput data pipelines in C# using TPL Dataflow! Learn to process data efficiently with concurrency control and a clean architecture. Example: Car manufacturing.
Techniques for Structuring Asynchronous JavaScript Logic in Complex Applications
Mar 20, 2026.
Master asynchronous JavaScript in complex apps! Learn techniques for promises, async/await, error handling, and parallel execution to boost performance and reliability.
What Are Subagents in ChatGPT and How Do They Work for Faster AI Task Completion?
Mar 20, 2026.
Learn what subagents in ChatGPT are, how they work, where they appear today, and how to use them for coding, research, reviews, and team workflows.
How Do Concurrency Models Differ Across Modern Programming Languages?
Mar 11, 2026.
Explore concurrency models across Java, Go, Python, and JavaScript. Learn how threads, event loops, actors, and async/await impact performance and scalability.
Task Parallel Library (TPL) in C# – A Complete Guide
Mar 02, 2026.
Unlock the power of parallel programming in C# with the Task Parallel Library (TPL). Learn to boost performance, manage threads efficiently, and build scalable applications. Master tasks, parallel loops, and exception handling for optimal multi-core utilization.
Parallel Programming in C#: The Complete Guide to Task Parallel Library (TPL) for High-Performance Applications
Feb 25, 2026.
Unlock C# parallel programming with TPL! Master multi-core utilization, boost performance, and build scalable apps. Learn TPL architecture, best practices, and avoid common pitfalls.
How Async and Await Work Internally in C#?
Feb 23, 2026.
Unlock the secrets of C#'s async/await! Explore compiler transformations, state machines, and TAP for efficient, scalable .NET apps. Master non-blocking code!
How to Improve Performance with Threading in .NET
Feb 20, 2026.
Unlock .NET performance! Master threading & parallel programming for responsive & efficient apps. Learn Task-based approaches & avoid common pitfalls. Build scalable systems!
How Does Threading Work in C#?
Feb 17, 2026.
Unlock C# threading! Learn how to build responsive, scalable .NET apps using threads, Thread Pool, and TPL. Master async/await and synchronization for peak performance.
Understanding Task Parallel Library (TPL) in ASP.NET Core
Jan 26, 2026.
Unlock ASP.NET Core's potential with the Task Parallel Library (TPL)! Learn async/await, parallel task execution, and background processing for scalable APIs. Avoid common pitfalls and boost performance.
Task Parallel Library (TPL) in ASP.NET Core
Jan 26, 2026.
Unlock the power of the Task Parallel Library (TPL) in ASP.NET Core! Learn how to build scalable, responsive applications with asynchronous programming and parallel execution. Master TPL best practices for optimal performance.
Exploring Advanced Features in Java Streams for Cleaner Data Processing
Dec 19, 2025.
Explore advanced features of Java Streams for cleaner and more efficient data processing. Learn grouping, collectors, parallel streams, custom collectors, and best practices with simple examples.
How to Use Python Multiprocessing and Multithreading Effectively
Dec 05, 2025.
Unlock Python's speed potential! Learn to use multithreading & multiprocessing effectively for I/O-bound and CPU-bound tasks. Avoid common mistakes and optimize your code.
Mastering Loops in C#: A Complete Guide With Best Practices, Mistakes, and When to Use What
Nov 23, 2025.
Master C# loops! This guide covers for, while, foreach, parallel loops, and LINQ. Learn best practices, common mistakes, and performance tips for efficient code.
🚀 Batch Processing in C# using async and await — The Smart Way to Handle Workloads
Oct 31, 2025.
Master batch processing in C# using async/await! Learn how to efficiently handle large workloads, improve performance, and scale your applications. Real-world examples included.
Seconds Save Lives: Architecting Parallel Patient Triage with Azure Functions
Oct 14, 2025.
Discover how Azure Functions, Cosmos DB bindings, and queue triggers enable real-time patient triage in emergency medical response. Learn to architect scalable, reliable serverless systems using [CosmosDBInput] for secure data access and parallel processing for high throughput. Explore best practices for enterprise scalability, idempotency, and monitoring to build life-saving applications.
Pushing .NET Performance: Practical Low-Level Programming Techniques in C#
Sep 23, 2025.
Unlock peak .NET performance with low-level C# techniques! Dive into unsafe code, spans, stackalloc, and P/Invoke to minimize allocations, control memory, and optimize critical paths. Learn when and how to bypass .NET's safety nets for real-time systems, high-frequency trading, and memory-sensitive apps.
Synchronous vs Asynchronous Programming with CPU-bound & I/O-bound Examples
Aug 13, 2025.
Learn the differences between synchronous and asynchronous programming in C#, explore CPU-bound vs I/O-bound tasks, and master async/await with real-life analogies, examples, performance tips, and a clear comparison table.
Difference Between Task, async/await, and Threading in .NET
Aug 06, 2025.
This article explains the core differences between Task, async/await, and traditional Threading in .NET. Learn how they work, when to use each, and how they impact performance, scalability, and readability in your C# applications, with simple explanations and practical code examples.
Advanced C# Techniques: Multipart Uploads with AWS S3
Apr 30, 2025.
Learn how to efficiently upload large files to Amazon S3 using Multipart Upload in .NET (C#). Explore automation with TransferUtility, manual control, best practices, retries, and production integration tips.
Thread-Safe Counters and Flags Using Interlocked in .NET
Apr 23, 2025.
Learn how .NET's Interlocked class enables lock-free, thread-safe operations for counters, flags, and atomic updates—perfect for lightweight concurrency control in multithreaded applications without risking race conditions.
Exploring PLINQ (Parallel LINQ) for Parallel Processing
Mar 29, 2025.
PLINQ (Parallel LINQ) is a powerful feature in .NET that enables parallel processing of queries to improve performance on multi-core processors.
How to Invoke Amazon Bedrock Flow Using C#
Feb 18, 2025.
This article walks you through setting up Bedrock, integrating it with C#, and making API calls to invoke AI models. Perfect for developers looking to leverage AWS AI services in .NET applications.
Understanding Parallel.For Method in c#
Dec 23, 2024.
Parallel.For in C# allows executing loops in parallel, improving performance by utilizing multiple processors or cores. It enhances scalability but introduces overhead and requires thread safety for shared resources.
Distributed Training of Deep Learning Models with Azure ML & PyTorch Lightning
Dec 19, 2024.
Learn how to perform distributed training of deep learning models using Azure ML and PyTorch Lightning.
Invoke Azure Data Factory Pipeline via MSFT Fabric without REST API
Sep 18, 2024.
This guide explores alternative methods for automating and orchestrating your data workflows in the cloud, providing seamless integration with Azure services for efficient pipeline execution.
An overview of the Task Parallel Library (TPL) in C#
Sep 17, 2024.
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
Aug 09, 2024.
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 concurrent programming.
Integrating C/C++ Libraries to .NET Applications with P/Invoke
Aug 01, 2024.
Integrating CC++ libraries into .NET applications using PInvoke allows you to call native code from managed code. This process involves declaring methods in C++ libraries using extern "C" and importing them into .NET with the DllImport attribute.
Generate an image by invoking Amazon Titan Image on Amazon Bedrock using .NET console application
Jul 15, 2024.
Generate an image using Amazon Titan Image on Amazon Bedrock with a .NET console application. Explore seamless integration of cloud services, leveraging AWS's robust infrastructure for efficient image processing.
Synchronous vs Asynchronous: Task.WaitAll and Task.WhenAll in .NET
Jul 09, 2024.
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.WhenAll asynchronously waits, enabling concurrent task execution.
Concurrency and Parallelism in C#
Jun 24, 2024.
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 parallel computing, enhancing application performance and responsiveness.
LINQ vs PLINQ Method Syntax for Efficient C# .NET Data Processing
Jun 17, 2024.
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, while PLINQ extends LINQ by enabling parallel execution.
Synchronous Asynchronous Blocking Non-Blocking Concurrent Parallel Programming
May 29, 2024.
Explore the intricacies of programming paradigms with a comprehensive dive into synchronous, asynchronous, blocking, non-blocking, concurrent, and parallel execution.
Exploring the BlockingCollection<T> Class in .NET
Apr 25, 2024.
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'll delve into the BlockingCollection<T> class, explore its features, and learn how it simplifies concurrent programming in .NET.
Best Practices for Threading in .NET C#
Apr 24, 2024.
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 topics such as thread safety, synchronization, and performance optimization.
ConcurrentBag<T> in C#: Thread-Safe Collection Guide
Apr 23, 2024.
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 simple examples to help developers grasp its concepts more effectively.
Parallel Programming with SemaphoreSlim in .NET
Apr 09, 2024.
SemaphoreSlim in .NET enables efficient concurrency management, regulating resource access and ensuring thread safety. It's crucial for robust parallel programming, offering scalability without sacrificing stability in modern software development.
ThreadPool in C#: Practical Examples
Jan 10, 2024.
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 concurrent programming.
Invoke Azure Data Factory Pipeline via MSFT Fabric
Jan 03, 2024.
Learn to trigger Azure Data Factory (ADF) pipelines from Microsoft Data Factory using a service principal or organizational account. Follow the steps and API calls for seamless integration.
How To Invoke SOAP Web Service in MuleSoft
Dec 24, 2023.
In this article, you will learn how to invoke SOAP Web Service from the MuleSoft application. SOAP (Simple Object Access Protocol) is a protocol for exchanging structured information in the implementation of web services. It is a messaging protocol that allows programs running on different operating systems to communicate with each other by using XML as the message format.
How To Invoke REST Web Service in MuleSoft
Dec 22, 2023.
In this article, you will learn how to invoke REST Web Service from the MuleSoft application. MuleSoft's RESTful web service integration using Anypoint Studio. Understand the principles of REST, set up global configurations, and create a Mule project for seamless integration and efficient communication.
Create a Parallel Approval Process Using Power Automate
Dec 21, 2023.
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 seamless automation. Ideal for streamlining workflows and boosting productivity. Parallel approval process using Power Automate.
Task Parallel Library (TPL) in C#
Dec 12, 2023.
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 building efficient, responsive applications.
.NET Task Parallel Library vs System.Threading.Channels
Oct 18, 2023.
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 Task Parallel Library (TPL) and System.Threading.Channels. This article provides a practical comparison of these tools, illustrating their usage and advantages.
Invoke PowerAutomate on the Change Specific Field/Column Value of DevOps
Jun 26, 2023.
Reducing unnecessary Power Automate invocations, this article presents a solution to trigger automation only when specific column values change in Azure DevOps, optimizing consumption and flow history while maintaining efficiency.
Running Tasks In Parallel And Collecting Results In C# 11
Mar 29, 2023.
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
Feb 22, 2023.
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. OpenMP is a popular API for parallel programming in C++, which provides a set of compiler directives, runtime library routines, and environment variables for shared memory parallel programming. In this article, we will demonstrate how to use OpenMP for parallel matrix multiplication in C++.
Differences Between Multithreaded, Asynchronous, And Parallel Programming
Feb 06, 2023.
In this article, we are doing to dive into details of differences between Multithread, Asynchronous and Parallel programming
Use Of Invoke Workflow File And Arguments In UiPath
Dec 22, 2022.
Simple explanation of Invoke Workflow File activity and use of Arguments in UiPath
SIMD, A Parallel Processing At Hardware Level In C#
Dec 01, 2022.
In this article, you will learn about SIMD, a parallel processing at hardware level in c#.
Running Tasks In Parallel
Oct 03, 2022.
In this article, you will learn how to run tasks in Parallel in C#.
Generic Delegates In C#
May 17, 2022.
Here ill describe that why we need Generic Delegates what are Generic Delegates, keyword used in Generic Delegates and their type with example
Invoke REST APIs In Express JS
Oct 04, 2021.
In this article, you will learn about how to invoke REST APIs in Express JS.
A Diagnosis Of Parallel.Foreach
Aug 02, 2021.
In this article, you will learn about the diagnosis of Parallel.Foreach.
Excel Automation Using VB.NET In UiPath
Jan 15, 2021.
In this article, we will learn how to add columns and perform arithmetic calculations using VB.NET in UiPath.
Implement Global Exception Handling In ASP.NET Core Application
Nov 16, 2020.
Explore ASP.NET Core's robust exception handling mechanisms, including global handlers and custom middleware. Learn to implement middleware for comprehensive error management, ensuring smooth application execution and effective debugging.
Invoke An Azure Runbook Using Terraform
Sep 11, 2020.
In this blog, we will talk about the process to invoke an Azure Runbook which accepts parameters using Terraform.
Invoking JavaScript Functions in Blazor
Sep 02, 2020.
In this article, you will learn how to invoke JavaScript functions.
Debug Async Code
Jun 15, 2020.
In this article, you will learn how to debug async code.
Create Custom Middleware In An ASP.NET Core Application
Jun 14, 2020.
ASP.NET Core's request pipeline allows custom middleware components for handling tasks like authentication, and logging. Learn to create and integrate custom middleware for tailored application needs.
How To Archive MS Teams Using Graph API In Powershell
Jun 01, 2020.
This article demonstrates how to Archive MS Teams using Microsoft Graph API in PowerShell.
How To Insert SharePoint List Item To MS SQL Server Using PowerShell
May 15, 2020.
In this article, you will learn how to insert SharePoint list item to MS SQL Server using PowerShell.
Parallel Programming Using TPL in .NET
Apr 28, 2020.
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 parallel to best utilize these hardware features.
Understanding Parallel Programming Using Pthreads In PHP
Feb 13, 2020.
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 if implemented correctly.
Understanding Parallel Class (Parallel Loops) using C#
Feb 11, 2020.
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. Learning it, is quite easy because it mimics the sequential loops that the C# language has. Furthermore; if you are into intensive algorithm computations learning parallel loops is highly recommended.
Task Parallel Library 101 Using C#
Nov 27, 2019.
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 case, let's give it a try.
Invoke-SPOSiteSwap - Swap Or Move Your SharePoint Online Root Site Collection With Another Site
Aug 13, 2019.
This article explains the new SharePoint Online Management Shell command, Invoke-SPOSiteSwap, which can be used to move your communications site to the root site collection of a tenant.
Increase Performance Of LINQ By Parallelism
Apr 09, 2019.
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 performance.
Microsoft Flow In 10 Days - Day Four - Approval Flow (Sequential And Parallel)
May 17, 2018.
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.
Invoking Web Application From Console Application (.NET Core) Via Command Prompt
Jan 02, 2018.
This article is mainly for the command prompt lovers who want to use it to launch their web application build on .Net Core.
SQL Server 2016 - How To Detect The Current Cumulative Update/Service Pack That Was Installed
Nov 05, 2017.
Learn how to detect the current Cumulative Update or Service Pack installed on SQL Server using various methods like ServerProperty in T-SQL, SQL Server Management Studio, Configuration Manager, and PowerShell.
Invoking AWS Lambda Function Using AWS API Gateway
Aug 17, 2017.
In this article we will learn how Lambda function can be invoked through AWS API Gateway.
Passing Data To AWS Lambda Function And Invoking It Using AWS CLI
Aug 09, 2017.
In previous article, we learnt about AWS lambda structure and how a lambda function can be invoked. Before we go further, there are couple of things which are very important to consider while doing local development and production deployment.
Execution Of Test Cases In Sequential And Parallel Using Selenium Webdriver
Jul 18, 2017.
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 languages such as Java,C#, PHP,JavaScript, Ruby etc. Selenium supports various operating systems to execute the test scripts on web applications like Windows, Linux, MacOS etc. Selenium is written using one of the famous programming languages; i.e. Java, and its a cross-platform.
Invoke Azure Runbooks Using Webhook From Client Applications
Apr 14, 2017.
Invoke Azure Runbooks Using Webhook From Client Applications.
Introduction To Activity Life Cycle And Invoking An Activity From Another Activity
Feb 09, 2017.
In this article, you will learn about activity life cycle and invoking an activity from another activity.
Invoking WebAPI Controller Action With Multiple Parameters In CORS Enabled Web Application
Dec 08, 2016.
In this article, you will learn how to invoke WebAPI Controller Action with Multiple Parameters in CORS Enabled Web Application.
Invoking Azure Runbook SharePoint Operations Using Webhooks - Part Three
Oct 08, 2016.
In this article, you will learn how to invoke the Webhook using an external application, like PowerShell.
Invoking Azure Runbook SharePoint Operations Using Webhooks - Part Two
Oct 01, 2016.
In this article, you will learn how to create Webhooks for existing Azure Runbooks, which can help us in invoking the Runbooks, using external Applications like PowerShell, VS etc.
Invoking Azure Runbook SharePoint Operations Using Webhooks - Part One
Sep 17, 2016.
In this article, you will learn the use of webhooks, which can help us in invoking runbooks (SharePoint Automation) using external applications like PowerShell, VS, etc.
Parallel Programming In C# To Leverage Multicore Processor
Aug 17, 2016.
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. The guide likely covers techniques and patterns for designing and implementing parallel code, enabling developers to optimize performance and responsiveness in their applications.
Parallel Processing Messages Based On SQL Server
Apr 13, 2016.
In this article you will learn about Parallel Processing Messages based on SQL Server.
Invoke Method To Update UI From Secondary Threads In VB.NET
Jan 25, 2016.
In this brief article, we'll see how it can be possible, through the Invoke method, which is available to all controls through the System.Windows.Form namespace, to realize such functionality in order to execute a graphic refresh and update through delegates.
Parallel.ForEach() Vs Foreach() Loop in C#
Nov 24, 2015.
In this article you will learn about the difference between Parallel.ForEach() Vs Foreach() loop in C# language.
Action: Parallel Block In Nintex Workflows Through SharePoint 2013 And Office 365
Oct 27, 2015.
In this article you will learn Parallel Block in Nintex Workflows through SharePoint 2013 and Office 365.
Learn Parallel Programming
Oct 24, 2015.
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)
Oct 12, 2015.
This article explains the concept to create thread using TPL (Task Parallel Library) with different approaches.
Functions in PHP
Aug 20, 2015.
In this article you will learn about various functions in PHP.
Arranging the Long List of Choice Field Values in Parallel in SharePoint Using JavaScript
May 01, 2015.
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.
Invoke Methods in ASP.Net Automatically Over a Fixed Period of Time
Apr 18, 2015.
This article shows how to implement a functionality similar to Windows Service and Jobs in SQL Server to invoke a series of code automatically at fixed intervals.
Send Mail to Multiple Users Using Parallel Programming in ASP.Net C#
Feb 20, 2015.
This article shows how to send mail to multiple users using parallel programming.
Asynchronous and Parallel Programming
Feb 11, 2015.
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
Jan 25, 2015.
This is the second part of the parallel programming series focused on waiting for tasks problematics and exception handling.
Windows Store Apps: Invoke ScriptNotify Event When we Click a Button Inside a WebView
Jan 21, 2015.
The purpose of this article is to show a solution to invoke the ScriptNotify event when we click a button from a web page hosted in a WebView.