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 Thread Safe
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 (3)
Akshay Teotia (3)
Vijay Kumari (2)
Aman Gupta (2)
Ashutosh Singh (2)
Subal Mishra (2)
Vipul Kumar (1)
Muhammad Asif (1)
Guest User (1)
Lokendra Singh (1)
Sanjoli Gupta (1)
Rasul Huseynov (1)
Nagaraj M (1)
Naimish Makwana (1)
Rajeev Ranjan (1)
Mark Pelf (1)
Santosh Bondre (1)
Gul Md Ershad (1)
Shakti Saxena (1)
Prashant Koli (1)
Mike Gold (1)
Alexander Filatow (1)
Related resources for Thread Safe
No resource found
What's New in ASP.NET Core 9?
11/19/2024 10:07:33 AM.
C# 13 enhances developer productivity with features like flexible params collections, scoped locks, and partial properties, allowing for streamlined coding, improved performance, and robust thread saf
Difference between lock(this) and lock(privateObj) in C#
8/22/2024 5:27:38 AM.
In multi-threaded C# programming, the lock statement ensures that critical code sections are accessed by only one thread at a time. While lock(this) locks on the current instance, it can expose your o
Implementing Thread-Safe Dynamic Arrays
7/31/2024 9:08:36 AM.
Implementing thread-safe, dynamically resizable arrays in C ensures data integrity in multi-threaded applications. Utilize mutex locks for synchronization, condition variables for state management, an
Singleton Design Pattern: Detailed Explanation and Practical Examples
7/24/2024 6:52:58 AM.
The Singleton Design Pattern ensures a class has only one instance and provides global access to it. Implementations include Basic Singleton, Thread-Safe Singleton with synchronization, Double-Checked
Harnessing Efficiency: Lazy Initialization in C# .NET
7/17/2024 12:43:28 AM.
Learn about lazy initialization in C# .NET—a vital design pattern that defers object creation until it's needed, optimizing performance and memory usage. Implementing with Lazy<T> ensures th
Injecting Dependencies of Different Lifetimes in .NET Applications
7/9/2024 7:19:26 AM.
Understanding dependency lifetimes in .NET is crucial for effective dependency injection. Singleton instances persist throughout the application's lifespan, scoped instances are tied to specific r
Create Immutable Type In C#
6/4/2024 9:52:32 AM.
A public constructor that accepts initialization data is required so that the client can pass-in minimum state for the type to be valid. Private constructor, on the other hand, is used by methods to c
Working with Concurrent Hash Map in Java
5/22/2024 4:21:55 AM.
ConcurrentHashMap in Java is a thread-safe Map implementation that allows concurrent access and modification by multiple threads without external synchronization, ideal for multi-threaded environments
C# HashTable
5/21/2024 9:39:15 AM.
C#'s HashTable is a data structure storing key-value pairs using a hash function for fast retrieval. It handles collisions via chaining, ensuring efficient insertion, deletion, and retrieval opera
Understanding of ConcurrentDictionary in .NET
5/9/2024 3:59:02 AM.
Everything is becoming more concurrent, so usually server-based(or multithreaded environments) applications are faced with non-thread-safe problems such as race condition.
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
ConcurrentBag<T> in C#: Thread-Safe Collection for Concurrency
4/23/2024 5:39:26 AM.
Concurrent programming in C# often involves managing shared data among multiple threads. In this article, we'll delve into what ConcurrentBag<T> is, how it works, and when to use it.
Queue & Dequeue with Concurrent Dictionary in .NET Core
4/20/2024 7:02:23 AM.
In multi-threaded applications, efficient handling of concurrent data structures is crucial to ensure thread safety and performance. While .NET Core provides a variety of thread-safe collections, each
Singleton vs. Static Class in C# - Choosing the Right Approach
4/17/2024 4:54:57 AM.
Singleton and Static classes can only have one instance available in memory, and both classes can be used to maintain the global state of an application, however, there are many differences between th
Singleton Design Pattern With C# Sample
4/8/2024 9:13:27 AM.
In this article, we will Explore the Singleton Design Pattern in C# with a concise sample code demonstrating its implementation. Learn how to ensure a class has only one instance, providing global acc
Immutability: Creating Custom Immutable Types in C#
1/4/2024 10:41:56 AM.
In this article we will discuss about how to create custom immutable type in c#
How To Debug Multithreaded Programs In C#
9/10/2023 9:08:39 PM.
This article is mainly focused on the process of multithread debugging.Debugging multithreaded programs in C# can be challenging because multiple threads can run concurrently, making it difficult to p
Thread-Safe Calls Using Windows Form Controls in C#
8/25/2023 6:53:31 AM.
Here you will see how to make thread-safe calls using Windows Form Controls.
Thread-Safe Calls With BackgroundWorker Class in C#
8/25/2023 6:49:35 AM.
The preferred way to implement multithreading in your application is to use the BackgroundWorker component. The BackgroundWorker component uses an event-driven model for multithreading.
Random Class in Java
8/7/2023 9:55:58 AM.
Random class is used to generate pseudo-random numbers in java. An instance of this class is thread-safe. The instance of this class is however cryptographically insecure.
Thread-Safe Events In C#
7/31/2022 11:02:37 PM.
Discussion on the proper method to check for null-value and raise Event in C#.
Thread Safe Concurrent Collection in C#
4/8/2016 11:32:47 AM.
In this article you will learn about thread safe concurrent collection in C#.
Thread Safety In C#
11/14/2015 12:28:20 PM.
This article is intended to explain the concept of thread safety.
Thread Safety in C#
8/19/2015 8:05:39 PM.
In this article you will learn about thread safety in C#. In multithreading programming, the word “thread-safety” is often used. Thread-Safety is relevant when resources are shared between threads.
C# Singleton Design Pattern Example: Part 2
4/28/2015 12:52:54 AM.
In this article we will see how to make it Thread Safe.
ReaderWriterLockSlim Class in C# Threading
6/22/2012 12:55:33 AM.
ReaderWriterLockSlim is used to protect a resource that is read by multiple threads and written to by one thread at a time.
Illustrates the use of the lock in multithreading application
8/17/2006 2:10:26 AM.
Any application must have one or more processes. A Process is structural unit with a memory block and using some set of resources. For each executable, the Windows operating system creates some isolated memory block. This article tries to explain the use of lock basics of Multithreading in C# .Net.
Thread Safe code
7/26/2006 12:01:35 AM.
This articles tells the importance and meaning of a thread safe piece of code in C#.
Handling the Queuing of Messages in a Multithreaded Program
1/27/2006 5:52:54 AM.
In the financial world you have to deal with messages being spewed at you in large quantities at a rapid rate. For example stock quotes, market data, and orders come flying at you through some sort of wire and you as a programmer have to handle them in a way that doesn’t overwhelm you or the machine.
Thread Safe Collections ArrayList and Queue
1/27/2006 5:29:56 AM.
The attached project provides a dll containing a wrapper around the non-thread safe ArrayList and Queue classes. The wrapper implements the most common functions of this collection elements.