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 Locks
Share
facebook
twitter
linkedIn
Reddit
Topics
No topic found
Content Filter
Articles
Videos
Blogs
News
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
Shivprasad (6)
Sanjay Kumar (2)
Ayush Gupta (2)
Reeta Singh Lodhi (2)
Sateesh Arveti (2)
Prashant Bansal (2)
Vipul Kumar (1)
Rajeev Kumar (1)
Jitendra Mesavaniya (1)
Rikam Palkar (1)
Sukanya Mandal (1)
Abhishek Chadha (1)
Abhishek Arora (1)
Ratnesh Singh (1)
Anil Kumar (1)
Ajay Kumar (1)
Gurpreet Arora (1)
Bala S (1)
Rajeev Ranjan (1)
Satheesh Elumalai (1)
Mahesh Chand (1)
Aman Gupta (1)
Dhairya Krishnat (1)
Sarthak Varshney (1)
Sonia Bhadouria Vishvkarma (1)
Krishna Garad (1)
Amir Ali (1)
Prashant Sharma (1)
Onkar Sharma (1)
Abhishek Jaiswal (1)
Manish Sharma (1)
Vishal Nayan (1)
Sonu Chaudhary (1)
Hiren Thesiya (1)
Zia Ahmed Shaikh (1)
Chandrakant Parmar (1)
Usama Shahid (1)
Jatin Malik (1)
Sumit Deshmukh (1)
Waqas Sarwar (1)
Manpreet Singh (1)
Delpin Susai Raj (1)
Yatendra Sharma (1)
Kalyan Bandarupalli (1)
Sahil Sharma (1)
Abhijit Patil (1)
Sagar Pardeshi (1)
Mahesh Alle (1)
Vidya Vrat Agarwal (1)
Amisha Mehta (1)
Akshay Teotia (1)
Sonakshi Singh (1)
Related resources for Locks
No resource found
Explain Switch Case Uses in C#
9/11/2024 6:46:10 AM.
In C#, the switch statement serves as a control structure that enables the execution of distinct code blocks based on the value of a variable. It is frequently utilized when there is a need to compare
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
Mask an Aadhar Number into Blocks of 4 Digits Each
7/30/2024 5:51:41 AM.
This C# code demonstrates how to mask sensitive numbers, like Aadhar or account numbers. It validates input length, uses StringBuilder to format Aadhar numbers with spaces, and shows account number ma
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
Dynamic Rendering in Blazor Using Implicit and Explicit Expressions
7/11/2024 10:42:11 AM.
Blazor, known for its component-based architecture, integrates HTML and C# seamlessly for dynamic rendering. It offers implicit expressions for straightforward data binding, explicit expressions for c
Benefits of Locking and Unlocking Objects in C#
7/3/2024 11:06:28 AM.
Object locking in C# ensures controlled access to shared resources in multithreaded environments, preventing race conditions and maintaining data integrity. By using the lock statement, you can synchr
Internet of Things (IoT) - Part 2 (Building Blocks & Architecture)
6/7/2024 10:44:39 AM.
This article explores the foundational elements of the Internet of Things (IoT), covering its basic building blocks: sensors, processors, gateways, and applications. It delves into IoT architecture la
Methods for Effective Error Handling in Javascript
5/29/2024 10:02:17 AM.
JavaScript error handling involves managing syntax, runtime, and logical errors. Techniques include try...catch blocks, throwing custom errors, and handling asynchronous errors. Employing best practic
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
SQL Locks for Data Integrity in Concurrent Environments
5/14/2024 8:24:44 AM.
Understanding SQL Locks: Ensuring Data Integrity in Concurrent Environments
SQL Concurrency: Maintaining Data Integrity in Concurrent Environments
5/14/2024 7:07:02 AM.
Concurrency in databases enables multiple users or processes to access and modify data concurrently, enhancing performance. SQL concurrency ensures data consistency and integrity through locking mecha
Exception Handling in MVC
5/2/2024 9:50:23 AM.
Learn effective exception-handling techniques in MVC (Model-View-Controller) for robust web applications. Explore try-catch blocks, global exception filters, custom error pages, and logging strategies
Enterprise Library New Version 6
4/29/2024 10:15:21 AM.
Enterprise Library Version 6 is a Microsoft .NET Framework library offering application blocks for logging, caching, data access, security, and more. It provides configurable components for common ent
Understanding Deadlocks in C# and .NET Core
3/18/2024 6:03:22 AM.
Deadlocks, common in concurrent C# programs, occur when threads wait indefinitely for each other's resources. Learn prevention strategies and understand scenarios to ensure robust application exec
Learn Exception Handling in C#
2/28/2024 11:14:25 AM.
Exception Handling in C# is crucial for robust code. Using try-catch blocks, catch blocks, and finally blocks, developers manage unexpected issues gracefully, ensuring dependable and solid application
How to Find Blocked Deadlocks in SQL?
2/9/2024 8:42:19 AM.
The SQL query utilizes dynamic management views (DMVs) like sys.dm_exec_requests, sys.dm_exec_sessions, sys.dm_exec_connections, and sys.dm_exec_sql_text to monitor and manage active sessions, connect
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
Building Blocks Of Angular
3/19/2022 6:40:57 AM.
In this article, we are going to see about the building blocks of Angular.
An Introduction To Blockchain
6/30/2021 1:44:59 PM.
In this video Mark explains the basic building blocks of blockchain.
Learn About Exception Handling In Java
4/19/2021 1:25:27 PM.
Through this article, users will get in-depth knowledge of Exceptions and Exception handling used in Java.
Logging Application Block
2/17/2021 7:04:07 AM.
In this article we will see how to configure logging.
Building Blocks Of Power BI
6/23/2020 5:56:50 AM.
In this article, you will learn about the building blocks of Power BI.
What are Data Center Building Blocks and Network Virtualization Services?
5/12/2020 2:04:45 PM.
In this article, you will learn about data center building blocks and network virtualization services.
JavaScript Building Blocks
4/7/2020 1:08:29 PM.
I'm going to discuss JavaScript building-blocks for beginners.
Clocks Using JavaScript in ASP.Net
4/5/2020 2:19:56 PM.
In this article we will see how to create clocks on our webpage with JavaScript.
Analog and Digital Clocks in Android
4/1/2020 4:16:42 AM.
This article explains analog and digital clocks in Android. Android Studio is used to create the sample.
Enabling Spotlight Images On Windows 10 Lockscreen
1/17/2020 1:50:31 PM.
In this article, you will learn more about how to enable Windows Spotlight images on the lockscreen of Windows 10.
How To Add Multiiple Time Zone Clocks In Windows 10
1/2/2020 10:06:50 AM.
In this tutorial, I have discussed how to set-up and see multiple time zone clocks in Windows 10.
Clocks For Websites
12/19/2019 3:16:01 AM.
This article will talk about clock design and development for your websites, web applications, portals and so on.
How to Disable Additional Clocks in Windows 8
12/17/2019 2:28:04 AM.
In this article I have described how to disable additional clocks in Windows 8.
Understanding and handling SQL Server Transaction Deadlocks
7/17/2019 3:36:47 AM.
Deadlocks occur when two users have locks on separate objects and each user wants a lock on the other's object.
Locks In SQL Server
7/5/2019 2:49:52 AM.
In this article you will learn about Locks In Sql Server.
Important Building Blocks Of the Organization In Terms Of Microsoft Products And Technology
11/15/2018 12:18:07 AM.
Today, in this blog we will discuss different Microsoft Products and their roles and place in an organization. We will also understand how these products can help to form an Organization which may lea
Bitcoin Block Height: How Many Blocks Have Been Mined So Far?
11/14/2018 1:19:42 AM.
I believe you all are aware of Blockchain and bitcoin. In this video, we will see the process of finding the number of blocks that have been mined so far.
Understanding Threading in .NET Framework
9/17/2018 1:16:54 AM.
This article describes how to use threading model in .NET Framework including creating, joining, suspending, killing, and interlocking threads. Create thread in C#, Join thread in C#, Suspend thread i
The Angular Series - Building Blocks Of Angular - Part Three
8/2/2018 1:33:29 AM.
Today we’re discussing the building blocks of Angular. Basically, Angular is written in Typescript itself. So it is the prerequisite to know the typescript before starting angular. And obviously as an
Exception Handling In C# .Net With Examples
9/27/2017 2:18:24 AM.
This video tells about the exception handling in C# .Net from the very beginning. It covers various aspects of exceptions. SHown below are the topics covered, and we have taken examples for an ASP.Net
Introduction To Web Part And Web Part Infrastructure In SharePoint
6/13/2017 11:03:43 AM.
Introduction To Web Part And Web Part Infrastructure In SharePoint.
SharePoint 2016 Central Admin - Application Management - Configure Quotas And Locks
1/29/2017 12:41:15 PM.
In this article you will learn about configuring Quotas and Locks in SharePoint 2016 Central Admin.
Site Collection Quotas And Locks In SharePoint 2013 Central Administration
1/26/2017 12:29:34 PM.
In this article you will learn about site collection quotas and locks in SharePoint 2013 central administration.
How To Get Time Using Clocks In Xamarin Android App Using Visual Studio
12/5/2016 11:59:56 AM.
In this article, you will learn how to get time, using clocks in Xamarin Android app, using Visual Studio 2015.
Look At T4 Templates In Visual Studio 2015 - Part Three
5/3/2016 12:49:11 AM.
In this article you will learn about class feature blocks and utility methods in Visual Studio 2015
SharePoint 2013: How To Create Custom Result Blocks Using Query Rules
4/20/2016 12:19:05 PM.
In this article you will learn how to create Custom Result Blocks using Query Rules in SharePoint 2013.
SharePoint 2013: How To Create Custom Intent Based Results Blocks Using Query Rules
4/13/2016 1:35:22 PM.
In this article you will learn how to create Custom Intent Based Results Blocks using Query Rules in SharePoint 2013.
Enterprise Library In ASP.NET
10/16/2015 3:43:02 AM.
In this article we will learn how to use enterprise library in ASP.NET. It is a collection of application blocks and core infrastructure.
C# 6 Features Overview
2/11/2015 12:24:41 PM.
This article outlines the new features that have been added to the new C# version 6.0.
LAME Question of the Day: Role of Curly Braces {} in Our Code?
1/28/2015 7:19:09 AM.
Should we use Curly Braces {} for if/if-else statements?
Introduction to Enterprise Library: Part I
9/5/2014 2:10:23 AM.
This article gives an introduction to Enterprise Library.
Try and Catch Blocks in C#
2/5/2014 6:24:45 PM.
In this article you will learn about try and catch blocks in C#.
SharePoint 2010: Allow Server Side Code Inline Code Blocks (Sever Side Script)
1/15/2014 3:53:27 PM.
In this article you will learn about SharePoint 2010: Allow Server Side Code Inline Code Blocks (Sever side Script).
Errors Handling With Try and Catch Blocks in C#
9/11/2013 12:27:36 PM.
This article will provide an idea/example of how to handle errors in C# programming using try and catch blocks.
Exception Handling With C#
3/28/2013 4:07:45 PM.
This article explains how to properly handle existing exceptions using try, catch, finally and throw blocks and how to create your own custom exceptions.
Exception Handling
9/30/2012 4:49:52 AM.
Exceptions in C# provide a structured, and type-safe way of handling both system level and application level error conditions. The exception mechanism in C# is very similar to that of C++, with a few important differences.
4 steps to use readymade DAL component (Data application blocks)
9/29/2012 10:06:29 AM.
This tutorial will run through the necessary steps of how you can use Enterprise data application blocks in your DAL component.
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.
Autoscaling Application Blocks WIndows Azure
5/17/2012 3:19:41 PM.
Autoscaling Application Blocks can automatically scale the Windows Azure application based on the rules defined specifically for the application.
Light on Science Revolution-History of Robots
5/15/2012 2:08:12 PM.
In this article we are going to throw some light on the origin and history of Robots and try to know about the stages it went through to become advanced.
Five step of how to use logging utility in your projects using application blocks
6/3/2009 1:10:49 AM.
It's new world of software reusability. Gone are the days when we need to build things from scratch. One of the most needed functionality is the logging utility. Every software project needs a logging utility. To make your own logging utility is a big project by itself. In this tutorial we will quickly run through how you can use Microsoft logging application blocks to log messages and activities.
Plug & play architecture using Policy Application Blocks
5/8/2009 12:56:54 AM.
In this article, we will discuss how we can make plug & play architecture using policy application blocks. What we will do is we will take a practical scenario where we want to enable logging for an application depending on situations.
16 steps to write flexible business validation in C# using Validation Blocks
3/30/2009 3:37:12 AM.
Validation is one of the most important parts in any software project. Building flexible business validation is every one’s dream.
Client side validation using Validation Application blocks
2/23/2009 6:33:07 AM.
Enterprise validation application provides us a ready made framework by which we can implement dynamic validation easily in our project.
DI using Unity Application Blocks
1/20/2009 11:55:46 PM.
In this article we will take up a simple example and try to implement DI using unity application blocks thus resulting in loosely coupled architecture.