Related resources for Multi Thread
  • ConcurrentBag<T> in C#: Thread-Safe Collection Guide4/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&#39;ll delve into ConcurrentBag&lt;T&gt;, its usage, and provide
  • ConcurrentBag<T> in C#: Thread-Safe Collection for Concurrency4/23/2024 5:39:26 AM. Concurrent programming in C# often involves managing shared data among multiple threads. In this article, we&#39;ll delve into what ConcurrentBag&lt;T&gt; is, how it works, and when to use it.
  • Exploring the ConcurrentQueue<T> Class in .NET C#4/22/2024 5:48:24 AM. In multi-threaded programming, thread safety and efficient data sharing are critical considerations to ensure smooth and reliable application execution. This article dives into the features, usage, a
  • Exploring the fundamentals of concurrent programming in .NET4/19/2024 11:57:13 AM. Concurrency is vital for efficient applications. .NET offers Thread, Multithreading, Task, Async &amp; Await, Threadpool, Lock, and Deadlock tools. Understanding them enhances .NET development for sca
  • How To Make A Chat Application Using Sockets In Java4/3/2024 9:38:00 AM. Creating a chat application in Java involves utilizing sockets for network communication between client and server. Implementing input/output streams facilitates message exchange. Multi-threading ensu
  • Optimizing Dynamics 365: Thread Jobs for Multiple Record Updates 3/27/2024 8:56:42 AM. In this article, we will learn how to utilize Thread Jobs for Updating Multiple Records in Dynamics 365 using PowerShell Script. Retrieving all Contact Records and Updating First and Last Names using
  • Better Implementation Of Singleton Pattern in .NET2/28/2024 4:09:40 AM. This article explains the mistakes made in writing Singleton Pattern in the multithreaded environment create a bug and how to bring a solution to it.
  • Thread Synchronization in Java9/20/2023 4:59:09 AM. When using two or more threads in a program, it may be so happening that more than one thread wants to access a resource at the same time. For example, one thread might try to read data from a file wh
  • What is Threading in C#?9/15/2023 6:37:06 AM. Threading in C# empowers concurrent task execution within a single process. Enhance application performance, responsiveness, and scalability for complex operations. Learn the basics and explore advanc
  • Multi-Threading (2-1), Different MultiThreading Topics7/14/2023 6:57:11 AM. This article will discuss Different MultiThreading Topics.
  • Multi-Threading (2), Implementation Overview7/14/2023 6:56:37 AM. This article will discuss the multi-threading implementation in overview.
  • Multi-Threading (3-1), async, multi-await7/5/2023 5:50:16 AM. This article will discuss async, multi-await.
  • Multi-Threading (4-1), delegate and MultiThreading7/5/2023 5:49:28 AM. This article will discuss delegate and MultiThreading
  • Multi-Threading (1), Concept - What, Why7/5/2023 5:49:00 AM. This article will discuss multi-threading.
  • Multi-Threading (4), Delegate based Asynchronous Programming Model7/5/2023 5:48:30 AM. This article will discuss delegate based Asynchronous Programming Model.
  • Multi-Threading (3), async, await in C#7/5/2023 5:48:03 AM. This article will discuss Async, Wait key words in C#
  • Creating Analog Clock in Java9/17/2019 6:35:19 AM. In this article we are going to describe how to make an analog clock using the Graphics class in Java.
  • How To Return A Pair Of Closest Birthdates Using API, Multi Threading And MVC 5 Using C#.NET10/18/2017 9:13:40 AM. This article demonstrates how to use multi-threading to return the name of 2 customers who have the closest birthdate. I also include how create API to add\ retrieve customer details from SQL database
  • Multi Threading With Windows Forms1/10/2017 9:59:42 AM. Some quick code for updating a Windows form application user interface.
  • Introduction to JDBC8/2/2016 3:01:27 AM. In this video we will Understanding Introduction to JDBC.Java Database Connectivity (JDBC) is an application programming interface (API) for the programming language Java, which defines how a client m
  • Multi-threading And Asynchronous Concepts1/15/2016 9:55:07 AM. In this article you will learn about multi-threading and asynchronous concepts.
  • Threading Simplified: Part 7 (Thread Priority)1/15/2016 2:05:02 AM. This article explains what Thread Priority is and how to use it efficiently in a multi-threading environment.
  • Monitor For Thread Locking Using ReaderWriterLocking2/1/2014 12:37:36 PM. This article explains use of a Monitor for thread locking using ReaderWriterLocking.
  • C# Corner Delhi Chapter Meet Official Recap: 18 Jan, 20141/28/2014 4:08:17 AM. The C# Corner Delhi Chapter organized its monthly event "C# Corner Delhi Chapter Meet" at MCN Solutions Pvt. Ltd. NOIDA, India on 18Jan, 2014. The event was named as: " Learn MVC, Multi Threading, Unit Testing and WCF "
  • Syncronization in Multithreading in VB.NET11/10/2012 2:45:17 AM. This article explains about the Synchronization in Multithreading. Threads are a powerful abstraction for allowing parallelized operations: graphical updates can happen while another thread is performing computations, two threads can handle two simultaneous network requests from a single process, and the list goes on.
  • Use Thread Local Storage to pass Thread Specific Data in VB.NET11/10/2012 2:35:02 AM. In an ideal world developers typically create instance variables and access these via interfaces to hold thread specific data. The .NET framework provides a mechanism to store data at a thread level and allows you to access this thread specific data anywhere this thread exists.
  • Synchronization in Multi-threaded Applications in VB.NET11/10/2012 1:58:41 AM. This article demonstrates the important concept in multithreading, synchronization. In this article and attached source code, you will learn how to write multi-threaded synchronized applications.
  • Messaging Between Threads using Message Loop in VB.NET11/10/2012 1:53:49 AM. MessageLoopLib is a stripped down version of a complete, threading communication subsystem I’ve written. This implementation is a single thread created in the GUI constructor. I’ve dropped all thread management and have had to change some of the message code to accommodate this.
  • Multithreading in VB.NET11/8/2012 8:56:47 AM. Multithreading is new to VB developer, VB developer always wanted this feature in the language and its there in VB .NET.
  • Synchronization in Multi-threading10/13/2012 5:50:17 AM. This article with sample code shows synchronization concepts of multithreading ..
  • C# Asynchronous, Multi Threaded Development... Digging In. Part II9/30/2012 4:10:07 AM. In this article we'll dig a bit deeper into what is actually happening when we use the asynchronous calls using C#. Just as in my previous article, we'll simulate a long running I/O bound process as if we were fetching records from a database, making a web service call or reading or writing from a file and see how we can write more performant code by letting the main thread continue on and not wait for the results. 
  • WinChat For .NET9/30/2012 2:48:50 AM. WinChat For .NET is a simple peer-to-peer chatting program that functions very similarly to the WinChat program provided by Windows 2000. It provides all the functionalities that the original WinChat program provides.
  • C# Pager5/19/2012 6:54:18 AM. C# Pager is a simple client/server application that implements functions of a pager.
  • Multi-threaded Asynchronous Programming in C#... Getting started.5/15/2012 3:25:10 PM. Trying to build better solutions and growing as a developer has always been fun for me and I’m always looking for ways to build more scalability and robustness in the software I am writing. I had a revelation that I’ve been doing a lot of C# tweaking but not taking advantage of the core performance enhancements cooked right into C# and it all comes down to one thing: Asynchronous multi-threaded programming.
  • When to use lock2/21/2011 2:53:11 PM. The lock keyword in C# provides good control over a multi-threaded application.
  • Bad Practices: Locking on Non-shared Objects in Multi-threaded Applications4/24/2010 3:59:35 AM. In this article we will see one of the bad practices developers always do.
  • Dealing with controls within a multi threaded context3/21/2009 7:17:46 AM. In this article I will provide a technique of how to avoid invalid cross threaded operation and I have taken an example of dealing with controls within a multithreaded context to demonsrate how to avoid such trouble
  • C# Asynchronous Multi-Threaded Active Directory User/Group Browser10/1/2007 8:04:42 AM. I was working on a win forms project that queries Active Directory information for user and group information and thought the approach may be of interest to some c-sharpcorner readers as a simple example of a asynchronous multi-threaded win forms application.
  • Multi-threaded Asynchronous Programming in C#... Through The Web Service. Part V8/30/2007 1:26:37 PM. In my last article I discussed a general approach to building an async architecture. In this article we’ll look at extending this basic architecture and incorporating async web services.
  • Multi-threaded Asynchronous Programming in C#... Through The Web Page. Part VI7/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().
  • Multi-threaded Asynchronous Programming in C#... Event-Driven Architecture. Part IV.6/20/2007 2:45:56 PM. This is a continuation of a set of articles on Asynchronous multi-threaded development using C#. In this article we'll cover the basics of building an event-driven architecture which will be a basis for most multi-threaded apps. Also we'll cover async read/write operations on a file.
  • Multi-threaded Asynchronous Programming in C#. Async Database Calls. Part III.6/1/2007 3:32:41 PM. In my last couple articles we looked at basic ways to have long-running i/o bound process be handled by the ThreadPool using the asynchronous programming model. In this article we’ll take a look at coding async calls against SqlServer which really comes in handy in production environments where our database is on another machine.
  • A Simple Multi-threaded TCP/UDP Server and Client V2.1/31/2007 4:07:15 AM. This is the second version of my client/server program. The server and the client can be run on the same machine or on different machines. The following is the brief description of the server and the client programs specifically.
  • Use Thread Local Storage to Pass Thread Specific Data1/31/2006 5:15:09 AM. The specific thread level storage is known as thread local storage or TLS for short. The .NET threading namespace allows .NET developers to use TLS from within their multi-threaded applications to store data that is unique to each thread.
  • Multi-threaded Web Applications - Case I: Search Engine1/31/2006 4:24:41 AM. This article is the first of the series of 4. I will demonstrate the use of threading in web applications by implementing a simply search engine. The following 3 articles in the series will be a Port Scanner, a Reverse DNS and a Web Hammer respectively.
  • Multi-threaded Web Applications - Case II: Port Scanner1/28/2006 6:41:10 AM. This article continues the 4-parts series of Multi-threaded Web Applications. In the first part, I have demonstrated how you can use multi-threading with ASP.NET to make a web based search engine more responsive, and to reduce the time required to compose the result. In this article, I will demonstrate how you can apply the same technique to a web based port scanner.
  • Consumer/Producer Multithreaded Program1/28/2006 12:21:10 AM. This is simple multi-threading program that adds and removes elements in an ArrayList. Producer button will creates a producer thread that adds elements in to the ArrayList. The maximum number of elements can be added to this ArrayList are 100 elements and the producer thread has to wait until the consumer thread/threads (creates by pressing consumer button) removes elements from the ArrayList. Then Producer thread starts to add more elements to the ArrayList.
  • Interlocking Threads1/27/2006 6:14:04 AM. Recently, I was building multi-threaded applications and noticed some intermittent data inconsistency. Soon, I found the culprit was locking mechanism. After doing some research, I gathered the following information and as usual decide to share with you guys.
  • Socket Chat12/27/2005 5:14:00 AM. This is an implementation of a Chat program using sockets. Along with basic chat capability,