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 Synchronous Programming
Share
facebook
twitter
linkedIn
Reddit
Topics
No topic found
Content Filter
Articles
Videos
Blogs
News
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
Sourav Kayal (6)
Ajay Kumar (5)
Nimit Joshi (3)
Chetan Sanghani (3)
Vidya Vrat Agarwal (3)
Ziggy Rafiq (2)
Jitendra Mesavaniya (2)
Ashutosh Singh (2)
Amr Monjid (2)
Sanjay Kumar (1)
Safyan Yaqoob (1)
George (1)
Abhishek Duppati (1)
Abhishek Arora (1)
Shivprasad (1)
Princy Gupta (1)
Barath Kumar M (1)
Dipal Choksi (1)
Sanjay Kumar (1)
Jaimin Shethiya (1)
Sardar Mudassar Ali Khan (1)
Jithu Thomas (1)
Dryshtee Woozir-Manilall (1)
Kiran B S (1)
Punar Dutt Rajput (1)
Abhishek Kumar (1)
Gourav walia (1)
Kashif Asif (1)
Simran Verma (1)
Sharadendu Dwivedi (1)
Tural Suleymani (1)
Jaydeep Suryawanshi (1)
Rikam Palkar (1)
Munib Butt (1)
Ankit Kanojia (1)
Kishor Bikram Oli (1)
Gul Md Ershad (1)
Abhishek Jaiswal (1)
Jaganathan Bantheswaran (1)
Dave Richter (1)
Mohit Chhabra (1)
Richa Garg (1)
Karthikeyan Anbarasan (1)
Manas Patnaik (1)
Matthew Cochran (1)
Manisha Mehta (1)
Related resources for Synchronous Programming
No resource found
CRUD Operations Using Asynchronous Programming in MVC 5
9/26/2024 7:22:44 AM.
This article explores CRUD (Create, Read, Update, Delete) operations using asynchronous programming in ASP.NET MVC 5. It delves into how asynchronous methods enhance application performance and respon
A Comprehensive Guide to Migrating Azure Functions C# to C# 12 with .NET 8 Isolated
9/21/2024 4:12:20 AM.
Ziggy Rafiq shows how to leverage modern C# features, and how to optimize the performance and scalability of Azure Functions by migrating them to .NET 8 Isolated Processes.
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.
async, await, ConfigureAwait(true/false) Asynchronous Programming in C#
8/12/2024 9:34:42 AM.
Explore asynchronous programming in C# with a focus on async and await keywords. Learn how to use ConfigureAwait(true/false) to manage context switching and avoid deadlocks.
Exploring ValueTask in C#
8/5/2024 11:34:24 AM.
xploring ValueTask in C#" delves into the intricacies of the ValueTask type introduced in C#. It compares ValueTask with Task, highlighting performance benefits and appropriate use cases.
Background Tasks with BackgroundService in .NET 7
7/17/2024 5:49:53 AM.
In modern software development, background tasks are essential for handling operations that need to run independently of user interactions, such as processing data, sending notifications, or performin
Multi-Threading (4), Delegate based Asynchronous Programming Model
7/8/2024 10:59:18 AM.
This article will discuss delegate based Asynchronous Programming Model.
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
Innovative Solutions with .NET: Enhancing Your Developer Toolkit
6/7/2024 4:22:53 AM.
Master current technologies and enhance your toolkit with .NET, a powerful framework by Microsoft. Explore cross-platform development with .NET Core, build modern web apps with ASP.NET Core, boost pro
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.
Scaling with .NET: How to Build High-Performance Applications
6/6/2024 11:29:51 AM.
Scaling with .NET: How to Build High-Performance Applications" explores strategies for optimizing .NET applications. Microservices, cloud computing, asynchronous programming, and performance test
Comprehensive Guide to C# Programming for Developers
6/6/2024 5:05:55 AM.
C# (C sharp) is a versatile programming language by Microsoft, ideal for web, desktop, mobile, cloud, and gaming apps. It features strong typing, garbage collection, and extensive libraries.
Using Await in Catch and Finally Blocks: A New Feature of C# 6.0
5/29/2024 8:12:06 AM.
Discover the power of using 'await' in catch and finally blocks with C# 6.0. Explore how this feature revolutionizes error handling and asynchronous programming, improving code readability and
Optimizing Long Polling Performance in .NET Applications
5/20/2024 10:23:56 AM.
Long polling emulates real-time client-server communication by keeping connections open until new data is available. Optimizing long polling in .NET enhances user experience and server efficiency thro
6 Important .NET Concepts
5/17/2024 10:37:22 AM.
This article will explain 6 important concepts, Stack, heap, value, ref, boxing, and unboxing. Explore the essence of .NET through six pivotal concepts.
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
Web API Service Call Function In Blazor Component
5/13/2024 11:29:42 AM.
Learn how to make HTTP service calls to a Web API from a Blazor component using C#. Explore asynchronous programming, HTTP client usage, and integration of RESTful API calls. Understand how to leverag
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
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
User Input Management with SegmentManager in C#
4/25/2024 5:42:35 AM.
In C#, one such tool that simplifies user input management is the `SegmentManager` class. This article delves into how the `SegmentManager` class facilitates the handling of user input in a structured
Concurrent Dictionary for String Comparison in .NET Core
4/20/2024 7:04:27 AM.
In .NET Core, the `ConcurrentDictionary<TKey, TValue>` class provides a thread-safe collection for storing key-value pairs, making it suitable for concurrent operations in multi-threaded environ
CancellationToken in ASP.NET Core
4/19/2024 5:43:27 AM.
CancellationToken in ASP.NET Core provides a powerful mechanism for achieving this goal. In this article, we will delve into the concept of CancellationToken, its usage, and practical examples to illu
Explanation of HttpClient in .NET Core
4/3/2024 10:41:08 AM.
The HttpClient class simplifies making HTTP requests (like GET or POST) in your .NET Core applications. It handles connections, timeouts, and responses, letting you focus on the data you need.
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
Asynchronous Programming in Angular Promises vs. Observables
3/6/2024 4:33:48 AM.
Asynchronous programming plays a crucial role in modern web development, especially in Angular applications where data fetching, event handling. In this article, we'll delve into the differences b
Unveiling New Features for Simplified Syntax and Improved Performance in C# 10
2/18/2024 3:32:44 AM.
In C# 10, authored by Ziggy Rafiq, developers will discover simplified syntax and performance improvements. Record structs combine the benefits of records and structs for better memory efficiency. Glo
Asynchronous Programming with Async and Await in C#
2/6/2024 5:54:11 AM.
C# leverages async and await keywords for asynchronous programming, crucial for I/O tasks. Defined with an async modifier, methods return Task or Task<T>. TAP enhances responsiveness, allowing c
Handling Observables with NgIf and Async Pipe
1/17/2024 5:16:02 AM.
Explore the effective use of Angular's *ngIf directive and the async pipe to efficiently handle observables in your Angular applications. Learn how to seamlessly manage asynchronous data, dynamica
What is .NET Dataflow?
1/16/2024 6:59:30 AM.
Embark on a magical journey into the realm of .NET Dataflow, a library weaving simplicity into parallel programming complexities. Practical examples unveil the enchanting powers of asynchronous progra
JWT Authentication Using Refresh Token Series - 1 [Login Feature] In .NET Core 6.0-ADO.NET-SQL
1/10/2024 10:39:54 AM.
In this series of articles, we'll focus on a hands-on, practical implementation of JWT authentication with refresh tokens in .NET Core 6.0 using ADO.NET and SQL, emphasizing real-world scenarios a
Difference Between Promise and Async/Await
1/9/2024 5:00:06 AM.
JavaScript asynchronous programming has evolved with Promises (ES6) and async/await (ES8). Promises offer structured handling with .then() and .catch(), while async/await makes asynchronous code appea
What is Asynchronous JavaScript?
11/28/2023 11:53:32 AM.
In this article, we will explore asynchronous programming in JavaScript. Asynchronous programming in JavaScript is pivotal in enhancing web applications' overall performance and responsiveness. Ja
Tasks in C# Asynchronous Programming
9/20/2023 10:13:33 AM.
In C#, asynchronous programming allows you to perform non-blocking operations, such as I/O-bound tasks or network calls, without blocking the main thread of execution. This is crucial for maintaining
C# Asynchronous Programming - Return Type of Asynchronous Method
9/20/2023 10:01:26 AM.
In this article, we will understand various return types of asynchronous functions in C#.
C# Asynchronous Programming - Async and Await
9/20/2023 9:35:38 AM.
This article explains asynchronous programming in C# 5.0, with some code examples of the use of C# async-await.
Asynchronous Programming in C# 5.0 - Access Data in Asynchronous Functions
9/12/2023 8:13:43 AM.
In this article, we will try to implement a few real-time applications of asynchronous programming. Here we will see in which scenario we can implement asynchronous style.
Delegate Uses In C#
9/12/2023 4:23:28 AM.
This article describes the uses of delegates in C#.Delegates in C# are powerful and versatile constructs that enable you to work with methods as first-class citizens. They provide a way to treat metho
Kotlin Coroutines Sample Mobile App Code Demonstration
9/6/2023 6:48:27 AM.
Here's a simple Kotlin Android application code sample that demonstrates the use of Coroutines for asynchronous programming. This example fetches data from a fake API and updates the UI when the d
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.
How JavaScript is Different from Other Programming Languages?
7/28/2023 10:42:14 AM.
This article aims to explore the uniqueness of JavaScript compared to other programming languages.
🚀Async/Await Deep Dive - Asynchronous Programming
7/14/2023 8:42:27 AM.
Async/Await are two keywords used by new generation apps to take advantage of Asynchronous Programming.
Asynchronous Programming With C#
2/9/2023 8:18:25 AM.
Asynchronous Programming in C# allows program execute code asynchronously using async and await in C#.
Asynchronous Programming Model: In Chasing The Ideal
2/8/2023 10:35:50 AM.
This articles talks about Asynchronous Programming Model and Asynchronous delegates.
Asynchronous Nature of Delegates
5/9/2022 11:12:13 AM.
In this article you will see the other face of the delegate type in C#, it will show you how you can invoke a method asynchronously using delegates.
Exception Handling in C# Asynchronous Programming
1/3/2022 11:10:13 AM.
In this article we will explain Exception Handling in C# asynchronous programming.
Thread Behavior In Synchronous And Asynchronous Method
12/28/2021 5:46:48 PM.
In this article, you will learn about thread behaviour in synchronous and asynchronous method.
Working With Asynchronous Programming With Entity Framework
11/23/2020 5:45:24 AM.
This article explains how to do asynchronous programming with the Entity Framework in a Console Application. We can also use this in a desktop or web application.
Asynchronous Programming With Async And Await
6/5/2020 5:36:47 AM.
In this article, you will learn about asynchronous programming in C#.
Asynchronous Programming Using Async Await in .NET
4/29/2020 6:44:28 PM.
In my previous article, I talked about modern age computers that have multiple cores and therefore must be equipped to design and develop applications that can utilize these resources. I talked about
Using the BackgroundWorker component
9/17/2018 5:54:03 AM.
This article discusses the BackgroundWorker component in .NET 2.0, it will show you how to use it to execute tasks in the background of your application. BackgroundWorker
Async, Await And Asynchronous Programming In MVC
9/7/2018 4:46:34 AM.
Async, Await And Asynchronous Programming In MVC. Async keyword is used to call the function/method as asynchronously. Await keyword is used when we need to get result of any function/method without b
Asynchronous Programming In WinJS Applications With Windows Runtime Component
4/20/2016 2:04:32 AM.
In this article you will learn how to do asynchronous programming in WinJS application built on HTML/JS/CSS with the help of Windows Runtime Component.
Asynchronous Programming Using Delegates
11/4/2015 12:24:40 AM.
This article is intended to explain the concept of asynchronous programming using DelegateS.
Async and Await in Asynchronous Programming in C#
7/30/2014 2:22:54 PM.
This article describes the async and await operators in Asynchronous Programming in C#.
Node.JS vs Traditional Scripting Languages
4/21/2014 4:22:49 PM.
This article provides a comparison between Node.JS and other scripting languages, especially the most popular scripting languages of the current decade. I will provide some valid arguments, examples and facts.
Asynchronous Programming in LightSwitch HTML Client With WinJS Promises
12/12/2013 3:32:48 AM.
In this article you will learn about Asynchronous Programming in LightSwitch HTML Client with WinJS Promises.
The C# Asynchronous Programming Model
11/17/2013 12:42:13 PM.
This article will start by examining how to use the Asynchronous Programming Model (APM) to perform an asynchronous compute-bound operation, then describe the three styles of programming with the APM to deal with handling the end of the call in an asynchronous call: wait-until done, polling, and callback. The natural following is then the Thread Pool.
Asynchronous Programming in C# 5.0 Part 6: 3 Best Practices in Asynchronous Programming
10/1/2013 10:31:20 AM.
In this article we will discuss few best practices in Asynchronous programming.
Accessing File System and Understanding Asynchronous and Synchronous Programming in Node.js
8/5/2013 11:08:53 AM.
In this article you will learn how to Access File System and understand Asynchronous and synchronous programming in node.js.
C# Corner Mumbai Chapter Webinar July 21st 2013 Official Recap
7/23/2013 1:15:50 PM.
C# Corner Mumbai Chapter Webinar July 21st 2013 Official Recap.
Asynchronous Programming in Windows Store App
1/7/2013 6:57:47 AM.
In this article I will explain how to use await operator for asynchronous programming in Windows Store Apps.
Downloading and Installing Visual Studio 11 Developers Preview
5/15/2012 6:15:14 PM.
Microsoft recently launched the Visual Studio 11 Developers Preview at BUILD Conference and it's available for download to all as a preview. So in this article we are going to see how to download and install the Visual Studio 11 developer preview version in a Windows 7 environment.
Asynchronous Programming Model in Silverlight 4 with WCF RIA
1/19/2011 5:28:12 PM.
Save your time by Understanding Asynchronous Programming Model in Silverlight 4 with WCF RIA
Multi-threaded Asynchronous Programming in C#... Through The Web Page. Part VI
7/26/2007 1:38:15 AM.
Async web pages which are primarily used as a server performance enhancement. There are two main methods we will be looking at that are used to execute operations asynchronously from web pages: Page.AddOnPreRenderCompleteAsync() and Page.AddOnPreRenderCompleteAsync().
Multithreading Part 4: The ThreadPool, Timer Classes and Asynchronous Programming
1/28/2006 4:29:06 AM.
In this article, I would discuss few more .NET classes and how and what role do they play a role in building multithreading applications.