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 Current
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 (6)
Ayush Gupta (4)
Ashutosh Singh (4)
Manpreet Singh (3)
Shweta Lodha (2)
Sarvesh Shinde (2)
Prakash Tripathi (2)
Mahesh Chand (2)
Abhishek Jaiswal (2)
Nishant Mittal (2)
Sagar Pardeshi (2)
Michal Habalcik (2)
Lakshmanan Sethu Sankaranarayan (2)
Alkesh Bijarniya (1)
Ajay Kumar (1)
Mohamed El-Qassas (Mvp) (1)
Vignesh Kumar (1)
Aayushi B (1)
Lokendra Singh (1)
Rasul Huseynov (1)
Amit Mohanty (1)
Akkiraju Ivaturi (1)
Harshal Limaye (1)
Jaimin Shethiya (1)
Gaurav Gupta (1)
Dhruvin Shah (1)
Sanwar Ranwa (1)
Monica Rathbun (1)
Mariusz Postol (1)
Sai Kumar Koona (1)
Sardar Mudassar Ali Khan (1)
Vipul Malhotra (1)
Keyur (1)
Jefferson S. Motta (1)
Amogh Natu (1)
Amit Kumar Singh (1)
Sharad Gupta (1)
Rakesh Kalluri (1)
Sandeep Singh Shekhawat (1)
Ramprakash Duraisamy (1)
Deepak Tewatia (1)
Jasminder Singh (1)
Mahesh Alle (1)
Vinodh Narayanan (1)
CSharp TV (1)
Anupam Maiti (1)
Sourav Kayal (1)
Gagan Bansal (1)
Hamid Khan (1)
Sivaraman Dhamodaran (1)
Mahender Pal (1)
Munib Butt (1)
Stephen Simon (1)
Nitin Bhardwaj (1)
Mahak Gupta (1)
Amir Ali (1)
Haridhass Mani (1)
Prabhakar Maurya (1)
Satendra Singh Bhati (1)
Siddharth Vaghasia (1)
Mahipal Reddy (1)
Saleh Qadeer (1)
Shantha Kumar T (1)
Vijayaragavan S (1)
Akash Kumhar (1)
Prasham Sabadra (1)
Sibeesh Venu (1)
Anbu Mani (1)
Santosh Bondre (1)
Suresh M (1)
Gul Md Ershad (1)
Gowtham Rajamanickam (1)
Vijay S (1)
Rahul Kumar Saxena (1)
Chetankumar G Shetty (1)
Rajeev Ranjan (1)
Philip Jebaraj (1)
Veda Bs (1)
Related resources for Current
No resource found
Getting Started with React 18's createRoot API
9/10/2024 10:42:18 AM.
The createRoot API in React 18 revolutionizes application rendering by replacing ReactDOM.render. It integrates with React's Concurrent Mode, enhancing performance through better state batching an
C# Discriminated Unions and .NET Channels
7/11/2024 3:00:02 AM.
Explore the advanced features of C# with a focus on Discriminated Unions and .NET Channels. Learn how Discriminated Unions enhance type safety and pattern matching, and how .NET Channels facilitate co
SQL Server 2016 - How To Detect The Current Cumulative Update/Service Pack That Was Installed
7/4/2024 7:36:25 AM.
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 P
Managing Concurrent Access with Semaphores in C# .NET
6/23/2024 9:42:19 PM.
Concurrency control is crucial in multithreaded programming to prevent resource contention. In C#, the Semaphore class manages access to shared resources, allowing a defined number of threads to proce
Getting Particular Timezones Current Date Time in SQL Server
6/12/2024 5:53:14 AM.
To retrieve the current date and time for specific time zones in SQL Server, use the query SELECT * FROM sys.time_zone_info. This query returns information about supported time zones, including their
Displaying Previous Current Next 2 Weeks in Power Apps Combo Box
6/11/2024 12:03:29 PM.
This Power Apps script generates a ComboBox displaying the previous 2 weeks, current week, and next 2 weeks. It utilizes variables to set the current date, calculates date ranges based on weekdays, an
Understanding Temporal Tables in SQL Server
6/4/2024 7:21:36 AM.
Temporal tables are a powerful feature introduced in SQL Server 2016 that provides a built-in mechanism for capturing and querying historical data. They enable you to keep track of all changes made to
Synchronous Asynchronous Blocking Non-Blocking Concurrent Parallel Programming
5/29/2024 6:24:45 AM.
Explore the intricacies of programming paradigms with a comprehensive dive into synchronous, asynchronous, blocking, non-blocking, concurrent, and parallel execution.
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
Understanding Thread Synchronization in Concurrent Programming
5/18/2024 6:43:01 AM.
Thread synchronization in C# ensures safe, correct access to shared resources in concurrent programming, preventing race conditions, data corruption, deadlocks, and livelocks through various mechanism
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
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.
Exploring the Fundamentals of Concurrent Programming in .NET
5/6/2024 8:49:30 AM.
Concurrency is vital for efficient applications. .NET offers Thread, Multithreading, Task, Async & Await, Threadpool, Lock, and Deadlock tools. Understanding them enhances .NET development for sca
Learn Parallel Programming in .NET
4/29/2024 9:57:15 AM.
.NET parallel programming techniques like Task Parallelism and Concurrent Collections. Utilize BlockingCollection to manage concurrent tasks. Explore Task.Factory.StartNew for task creation, Collectio
Exploring the BlockingCollection<T> Class in .NET
4/25/2024 6:56:24 AM.
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
Getting Started with WaitGroups in Go
4/25/2024 5:51:03 AM.
Discover the power of WaitGroups in Go for coordinating concurrent tasks. This beginner's guide will show you how to synchronize goroutines effectively, ensuring smooth parallel execution. Perfect
Implement Memory Cache with Sliding Expiration in .NET
4/24/2024 6:45:27 AM.
This guide illuminates memory caching's efficacy in enhancing data retrieval by storing frequently accessed data in memory. Utilizing ConcurrentDictionary in C#, it illustrates the creation of a s
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.
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
Real-Time Data Transfer with WebSockets and SignalR in .NET Core
4/22/2024 4:05:14 AM.
In this article, we'll explore how to implement WebSocket functionality using SignalR in a .NET Core application to retrieve data from a concurrent dictionary and push it to clients in real time.
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
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
Exploring Frozen Collections in .NET 8 With Benchmarking
4/14/2024 5:32:01 AM.
Frozen Collections is a new .NET 8 feature that can be used to create Dictionaries and Sets for faster read operations when you don’t need to make changes after the creation. In this article, I presen
How to Show Current Path on Title Bar in Windows 8
4/9/2024 9:24:50 AM.
In this article, I will show you how to enhance your Windows 8 experience by displaying the current path on the title bar. Navigate through your file system with ease as you customize your Explorer in
Customize Current Theme From Power BI Desktop Without Using JSON - Part One
4/8/2024 8:44:58 AM.
In this article, we will talk about how we can customize the current Power BI report theme in Power BI.
How Do You Sync Current Route in Vuex Store in Vue.js
3/29/2024 5:40:52 AM.
Syncing the current route in Vuex involves updating the store's state with route details using Vue Router's navigation guards. This approach centralizes route management for easier access acro
Keeping Large Table Statistics Current - TF2371
3/28/2024 6:33:21 AM.
Statistics are the magic ingredient that helps the query optimizer create its best guess for generating an execution plan. Keeping statistics as accurate as possible will give the optimizer the inform
Programming in Practice Discipline
2/27/2024 10:10:08 AM.
Programming in Practice is a discipline that systematically applies engineering principles to the program design, development, and implementation of algorithms, program text editions, and testing. It
Finding What Are the Assemblies Are Loaded Currently in Current AppDomain
2/7/2024 4:59:09 AM.
Determining what assemblies are currently loaded in the current AppDomain. This guide addresses a common problem in software development: issues with DLL integration into main applications.
Synchronous vs Asynchronous Programming in ASP.NET Core Web API
1/21/2024 1:50:22 PM.
Synchronous Programming: In synchronous programming, tasks are executed one after the other, in a sequential manner. When a request is made to a synchronous API, the server processes the request and w
Concurrent Collections in C#
1/12/2024 7:24:55 AM.
Unlock the power of concurrency in C# with a deep dive into concurrent collections. From ConcurrentDictionary for thread-safe dictionaries to BlockingCollection for versatile blocking operations, mast
ConcurrentQueue in C#
10/30/2023 6:05:13 AM.
This article provides a comprehensive overview of the ConcurrentQueue class in C# and its role in managing concurrent programming. You effectively explain the challenges related to concurrency and the
Fixing Unhandled Exception on the Current Circuit in Blazor
10/20/2023 8:28:49 AM.
Learn how lookout for a solution for the error unhandled exception on the current circuit
Restricting a C# Application to a Single Instance
7/17/2023 10:15:21 AM.
This post will show how you can implement that in your windows application using C#.
What is Synchronous and Asynchronous Programming in Javascript
5/24/2023 10:45:00 AM.
SQL Security Functions: Part 1
3/3/2023 7:15:56 AM.
In this article, I describe the Transact-SQL security functions CURRENT_USER, HAS_DBACCESS, HAS_PERMS_BY_NAME, and HASHBYTES.
Comparing Scope_identity (), @@identity and Ident_current
2/21/2023 8:35:03 AM.
This article will show the differences among scope_identity (), @@identity and ident_current.
Difference Among @@IDENTITY, SCOPE_IDENTITY() And IDENT_CURRENT()
2/21/2023 7:33:03 AM.
In this article, I am explaining how to get the last inserted identity value of an auto-increment column of database tables using SQL Server variable (@@IDENITY) and functions (SCOPE_IDENTITY() and ID
Get Current Quarter From Date In Canvas PowerApps
2/9/2023 5:26:59 PM.
In this blog, we will see how to get Quarters from Date.
How To Get Today's Date In SQL Server
1/24/2023 1:45:16 PM.
In SQL, Today's date can be used in SELECT, INSERT, and UPDATE statements. It can also be used in conjunction with other functions and operators for calculations or comparisons. Additionally, toda
@@ Identity Vs ScopeIdentity Vs Ident_Current in SQL
1/24/2023 7:01:41 AM.
This article explains @@Identity, Scope_Identity() & Ident_Current('Table_Name') in SQL.
Differences Between SCOPE IDENTITY, IDENT CURRENT, and IDENTITY in SQL Server
1/24/2023 7:00:43 AM.
In this article you will learn what is Different between SCOPE_IDENTITY, IDENT_CURRENT, and @@IDENTITY in SQL 2008
Get Current User Profile Properties In SPFx Webpart Using MS Graph API
8/25/2022 5:09:44 AM.
In this article I have explained how to get the current user profile properties in your SPFx webpart using Microsoft Graph API
Current Markets & What to Expect from Summer
7/8/2022 5:03:47 PM.
Watch this session to learn about Current Markets & what to expect from Summer.
Multiple Ways To Get Current Working Directory In Python
5/25/2022 1:01:13 PM.
This article demonstrates the various ways to get current working directory in Python.
Trigger one flow from other in Power Automate
8/30/2021 5:42:31 AM.
In this video tutorial we will see how to run or call a child flow from your current flow.
Web Security Vulnerabilities On User Session And Username Iteration
7/29/2021 1:57:28 PM.
In this article, you will learn about Web Security Vulnerabilities on User Session and Username Iteration.
Difference Between HttpContext.Current.Items and HttpContext.Current.Session in ASP.Net
1/12/2021 10:20:06 AM.
In this small discussion you will see the difference between HttpContext.Current.Session and HttpContext.current.Item.
Current Currency Rate in Your Website
1/6/2021 11:21:03 AM.
This tutorial shows how to embed the current currency rates in your webpage.
Concurrent Collections in .NET: ConcurrentQueue - Part Two
11/24/2020 12:43:30 AM.
In this article, you will learn about ConcurrentQueue and how to use it efficiently in software development.
Concurrent Collections in .NET: ConcurrentDictionary - Part One
11/23/2020 8:22:47 AM.
In this article you will learn about concurrent collections and ConcurrentDictionary in detail including how to use it efficiently in software development.
ConcurrentDictionary In C#
10/21/2020 1:24:13 PM.
In this article, you will learn about ConcurrentDictionary in C#.
Get Current Date and Time - Learn JavaScript
10/11/2020 10:01:13 PM.
In this JavaScript tutorial, we will see how to get current date and time. We will also see how to by-part the date and time.
Getting Current User Details In Canvas Apps
9/25/2020 8:45:24 AM.
This article is about fetching current user information in Powerapps
Concurrency And The ConcurrentBag In C#
9/1/2020 8:57:15 AM.
In this article you will learn about Concurrency and the ConcurrentBag in C#.
Current and Future State of Voice 🔊 Technology
5/27/2020 7:20:13 AM.
Join us in this open discussion about the current and future state of voice technology as we talk about their growth, potential, projects/jobs followed by your questions, and lot more
How to Get Current User Details in JavaScript
4/13/2020 2:51:35 AM.
In this article I will explain how to access the current user's details in JavaScript.
How to Get Current Map Style in Bing Maps Using JavaScript
4/5/2020 3:55:39 PM.
Here we can discuss how to get the current map style by programming in JavaScript in Bing Maps.
Determine Current Location Using the Location Manager in Android
3/31/2020 12:56:20 AM.
This article explains how to determine the current location using the location manager in Android. Android Studio is used to develop the application.
Get Current Location In Angular
2/12/2020 10:39:13 PM.
In this article we will get a location and convert the address
Add Current Location in Windows 8 Weather Apps
12/20/2019 12:18:03 AM.
In this article we are going to explain how to add current location in Windows 8 weather apps.
Examples of Get in Java
9/24/2019 3:58:08 AM.
This article provides various examples of using get in Java.
Learning PowerApps - Part 1 - Concurrent, Split, Patch Functions and Show Loader
8/29/2019 3:30:31 AM.
In this video article, we will see how to use Concurrent, Split, Patch functions in PowerApps. Then, we will learn how to show formatted currency value in PowerApps and how to show loader on the scree
Get Current Time Zone In C#
8/21/2019 7:07:26 PM.
Here is code example of how to get current time zone using C# TimeZone class.
Create Chrome Extension And Implement Basic Use Cases
8/21/2019 8:45:29 AM.
In this article, we will create a Chrome extension and implement the basic use cases which would give direction in creating complex extensions.
Set Current User As Default Value Of Person/ Group Field In PowerApps
7/25/2019 11:36:34 PM.
In this article, I am going to explain how to set the current user as the default value of a person or a group field in PowerApps. The goal of this article is to provide a complete idea about how to s
Picking Up Current Week And Last Week Dates In C#
4/3/2019 9:48:27 AM.
In this article you will learn how to pick up the current week and the last week's dates in C#.
Get Current User Information Using PnP Library In SharePoint Framework
11/18/2018 10:01:37 AM.
Here, you'll learn on how to get the current user information in SharePoint Framework web part using PnP JavaScript library.
Monitor The Network Connectivity Changes In Xamarin Forms Application Using Xamarin Essentials For Android And UWP
11/5/2018 10:56:21 AM.
Reading this article, we can learn how to Check the changes of network connectivity conditions and current network access in Xamarin Forms application using Xamarin Essentials for Android and Universa
Get The Current Logged In User Details In SharePoint 2013 Using SSOM, CSOM, REST API, JSOM And PowerShell
2/27/2018 10:20:24 AM.
In this article we will learn how to fetch the user details of the current logged in user in a SharePoint site. There are multiple approaches by which we can get the logged in details such as User ID
Why Google Home Is A Winner In The Long Run
6/7/2017 12:26:37 PM.
Why Google Home is a winner in the long run
Approaches For Showing The Tasks Assigned To The Logged In User From The Current Site Collection Using Office 365 And SharePoint Online
9/2/2016 12:12:43 PM.
In this article, I am going to show the various approaches, their pros and cons to show the tasks, assigned to the current user, across the site collection.
Your Current Settings Do Not Allow File To Be Downloaded
8/26/2016 1:58:03 PM.
In this article, we will see how we can get rid of the error “Your current settings do not allow file to be downloaded” in Windows Server 2012.
Throttling In WCF: Concurrent Instance and Session - Part Two
7/20/2016 4:06:41 PM.
In this article, you will learn about concurrent instance and session, using throttling in WCF.
Throttling In WCF: Concurrent Call - Part One
7/15/2016 1:18:59 AM.
In this article, you will learn about throttling In WCF.
Xamarin Android: Create Android GPS Current Location App
5/10/2016 10:50:02 AM.
In this article you will learn how to create a Xamarin Android GPS Current Location App.
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#.
Get Device Current Location In Windows 10 UWP
4/7/2016 5:54:21 PM.
In this article we are going to see how to get the device's current location in Windows 10 universal application.
Control Current Tasks In Multithreading
2/20/2016 1:04:56 AM.
This article is intended to explain the concept of controlling Task using different name.
Current Job Openings In Philadelphia
12/18/2015 11:41:57 PM.
Here is a list of current job openings we have in Philadelphia and New York areas.
Get Current Login User Profile Properties Through REST API
12/2/2015 7:01:47 AM.
This article shows how to get the current login User Profile Properties using the REST API.
Action: Terminate Current Workflow In SharePoint 2013 And Office 365 Using Nintex Workflows
10/29/2015 4:33:49 AM.
In this article you will learn how to terminate current Workflow in SharePoint 2013 and Office 365 using Nintex Workflows.
Configure Wait For Field Change In Current Item In SharePoint 2013 And Office 365 using Nintex Workflows
9/29/2015 3:41:31 PM.
In this article you will learn how to configure wait for field change in current item in SharePoint 2013 and Office 365 using Nintex Workflows.
Set Field In Current Item In SharePoint 2013 And Office 365 Using Nintex Workflows
9/25/2015 2:05:01 AM.
In this article we will learn how to set field in current item in SharePoint and Office 365 using nintex workflows.
Parallel Programming Part 1: Introducing Task Programming Library
4/16/2015 1:10:23 PM.
Introductory part of the parallel programming series in C# focused solely on the new Task Programming Library.
Deleting Current Role Definition to the Group in SharePoint Using REST
4/6/2015 4:24:57 AM.
In this example you will see how to delete the current role definition of the group in SharePoint using the REST.
Get My Followers From SharePoint 2013 Using REST API
4/3/2015 4:19:10 PM.
This article helps to retrieve all the users following the current user using REST in SharePoint 2013.
Draw Route Between Current Location and Destination On Google Maps in ASP.Net
2/25/2015 2:47:14 PM.
In this article I explain how to draw a route between the user’s current location and destination address on Google Maps.
Parallel Programming Part 2: Waiting For Tasks and Exceptions Handling
1/25/2015 11:12:47 PM.
This is the second part of the parallel programming series focused on waiting for tasks problematics and exception handling.
Current Location Tracking and Reverse Geocoding in Windows Store Apps
12/21/2014 10:01:25 PM.
This article covers methods to display the user's location using GPS, the usage of Pushpins and Reverse Geocoding.
Collections in C#
9/17/2014 6:50:33 PM.
This article describes the benefits and types of collections in C#.
SPCurrentContext Activities in Visual Studio 2013 Toolbox For SharePoint 2013 Workflows
7/10/2014 8:59:44 PM.
This article explains how to use the SPCurrentContext toolbox activities in SharePoint 2013 workflows.
Creating a Document Library using SharePoint 2013 REST API
6/5/2014 12:20:29 AM.
The SharePoint 2013 environment adds the ability to remotely interact with SharePoint sites using REST.
How to Get the Current Logged in User and Display Name Using SharePoint 2013 REST API
4/30/2014 3:19:34 PM.
This article explores with the REST API a quite simple and straightforward way to use a User ID to get the user's Title and Email for SharePoint 2013 and apps for SharePoint.
Get the Current Logged in User Using SharePoint 2013 CSOM
4/28/2014 3:52:19 PM.
In this article we will learn how to get the current logged in user using SharePoint 2013 CSOM.
Controlling Concurrent Execution in Parallel Loops
4/10/2014 11:05:35 AM.
This article focuses on how to control the creation of multiple concurrent tasks for parallel loops.
Applications Through C++
2/21/2014 1:01:24 PM.
Hello C++ lovers, today I will all familiarize you with some useful trade offs / applications of C++, concurent waiting and loops.
Dynamically Get the List Name in the Current Site Using CSOM-JavaScript
2/19/2014 1:38:52 PM.
This article explains how to dynamically fetch the list name from the current site using CSOM-JavaScript.